ChristineJ
Well-known Member
- Joined
- May 18, 2009
- Messages
- 731
- Office Version
- 365
- Platform
- Windows
I am using this code to pull in the value in cell LM in the same row.
How can this be changed so it pulls in the value in cell LM, but 25 rows up? (So if the cell is in row 50, it pulls in the value of LM25, for example.)
Thanks.
Rich (BB code):
strTitle = IIf(CStr(Range("LM" & .Row)) = "", " ", (CStr(Range("LM" & .Row)) & vbCr))
How can this be changed so it pulls in the value in cell LM, but 25 rows up? (So if the cell is in row 50, it pulls in the value of LM25, for example.)
Thanks.