1.I am confused as to what [&] means does itdenote what is between the [&] is a string like:
& this is a string & ?
2 If I want to put a formula in a certain cell like J2 to be (B2 – NamedCell) would I;
Thank you
& this is a string & ?
2 If I want to put a formula in a certain cell like J2 to be (B2 – NamedCell) would I;
Code:
[COLOR=#000000][FONT=Calibri]DIM ABC as string [/FONT][/COLOR]
[COLOR=#000000][FONT=Calibri]ABC = NamedCell ; set ABC as a named cell
[/FONT][/COLOR]
[COLOR=#000000][FONT=Calibri] Range(J2).Formula = “=(“B3” - “& ABC &”)” ‘? I’m confused about the quotes and the prentices[/FONT][/COLOR]