Hi,
I have two pages Page1 and Page2
on Page two I have lines with links from Page1 like:
=$page1.A1 =$page1.A2 =$page1.A3
When I copy the whole line and paste it next to it, the resulting line looks like this :
=$page1.A2 =$page1.A3 =$page1.A4
I want it to be like this instead :
=$page1.B1 =$page1.B2 =$page1.B3
How can I acheave this ? I can use $ in reference to stop incrementing the number but how to increment the letter ?
Thanks