Hi,
I have the code below that selects a range from cell BM76 using the row number from the value in cell BJ68 but the column is fixed as BU.
How can I adapt this code so it also reads the column number from cell BJ71 rather than it being fixed as BU?
Any help much appreciated.
I have the code below that selects a range from cell BM76 using the row number from the value in cell BJ68 but the column is fixed as BU.
How can I adapt this code so it also reads the column number from cell BJ71 rather than it being fixed as BU?
Any help much appreciated.
Code:
Dim numrows As Long
numrows = Range("BJ68")
Range("BM76:BU" & numrows).Select
Selection.CopyPicture