PDA

View Full Version : Solved: Insert Text in Selected Cell by Macro



clhare
02-18-2008, 06:16 AM
I need to create a macro that will insert text from a variable into column 2 of the selected row (whatever row that may be). How do I do that??

Bob Phillips
02-18-2008, 06:31 AM
Activesheet.Cells(Activecell.Row,"B").Value = myVar

clhare
02-18-2008, 06:35 AM
Yea!!! It works!! Thank you so much. I could not figure it out!