Good Morning,
I'm trying to come up with a code to insert a formula in the column next to the active cell
for example if active cell is A2 i want to insert the formula in B2 and then another one to cell C2
The formulas themselves have references to the active cell such as LEFT(A2,FIND(" ",A2)-1) since not all the time the active cell is going to be A2 how could I accomplish this?
does ActiveCell.Offset(RowOffset:=0, ColumnOffset:=+1).InsertFormula = LEFT(ActiveCell,FIND(" ",ActiveCell)-1) sound like a possible thing?
Regards,
I'm trying to come up with a code to insert a formula in the column next to the active cell
for example if active cell is A2 i want to insert the formula in B2 and then another one to cell C2
The formulas themselves have references to the active cell such as LEFT(A2,FIND(" ",A2)-1) since not all the time the active cell is going to be A2 how could I accomplish this?
does ActiveCell.Offset(RowOffset:=0, ColumnOffset:=+1).InsertFormula = LEFT(ActiveCell,FIND(" ",ActiveCell)-1) sound like a possible thing?
Regards,