Hi,
I'm missing something no doubt very simple...
All I want to do is paste a formula to a cell (within an If statement - different formulas for different cases)
If typed directly into the cell it would take the form..
="ABC "&A1&" DEF"
so it would result in text string: some number from another cell: second text string
in VBA I've tried
Range("A11").Formula = "=ABC" & "&A1&" & " DEF"
but I just get a #NAME error. Am I missing extra quotes or something?
Any help greatfully recieved!
Cheers