Good Morning All!
I know I’m going to be completely embarassed when I hear how simple the answer is… but I don’t have the time to waste trying to figure this out any more… SO I’ll beg for help once again…
I am automating a process that involves opening numerous workbooks (two at a time), copying data from one workbook to different locations in the other… I’ve got it all figured out except for one thing… The “Current Month” column data needs to be copied to the corresponding month column on the other sheet (There are 12 columns with April, May, etc in them) … I am using .Find to locate the month name I need… That’s fine… But when I copy the data to that location it’s overwriting the month name… i.e. starting in the cell with the month… I need it to copy to that column but directly below the month name…
Sounds simple right?… But do you think I can figure out how to add 1 row to the location I found… ???? … … Of course not!
Here’s my find line…
Set c = YSheet.Range(“G13:R13”).Find(pstrResponse, LookIn:=xlValues)
Range(c.Address).Select – takes me to the cell with “April” in it…
If I Debug.Print c.Address I see $L$13 in the immediate window… All I want is to say… okay… now copy the data to $L$14
TIA