Developer technologies | Visual Basic for Applications
An implementation of Visual Basic that is built into Microsoft products.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
trying to insert a column array through vba Range("b7").Value = "={3600;2400;1800;1500;1200}", excel inserts an @ between = and { and converts the intended column array into a row array
turning [File/Options/Advanced/Extend data range formats and formulas] off stops excel changing the formula during manual entry, but it keeps changing the formula entry through vba
An implementation of Visual Basic that is built into Microsoft products.
Try another statement:
Range("b7").Formula2 = "={3600;2400;1800;1500;1200}"