Nomis_Eswod
Board Regular
- Joined
- Jul 27, 2005
- Messages
- 153
Hi,
I have a table in Excel that is split into 2 halves. Unfortunately I am unable to post it on here due to restrictions in place on my work PC, but I will try and describe it...
Row B5:F5 has titles, and rows B14:F14 has titles, and I fill in the information inbetween. I am trying to use a macro that says:
Where row B22 is the bottom of the table. I want this pasted into B15, i.e. below the title that is in that row. However, it seems to skipped B14 and actually pastes under the title that is in row B5. Any ides why this might be, and how I can fix this??
Someone told me before to copy a blank cell and click on B14 and do a paste special>add, which I have tried, but it does not work.
Many thanks in advance!
I have a table in Excel that is split into 2 halves. Unfortunately I am unable to post it on here due to restrictions in place on my work PC, but I will try and describe it...
Row B5:F5 has titles, and rows B14:F14 has titles, and I fill in the information inbetween. I am trying to use a macro that says:
Code:
Range("B22").End(xlUp).Offset(1,0).Value = "Whatever"
Where row B22 is the bottom of the table. I want this pasted into B15, i.e. below the title that is in that row. However, it seems to skipped B14 and actually pastes under the title that is in row B5. Any ides why this might be, and how I can fix this??
Someone told me before to copy a blank cell and click on B14 and do a paste special>add, which I have tried, but it does not work.
Many thanks in advance!