Relative Reference of Colomns in Rows

Please_H

Board Regular
Joined
Apr 16, 2017
Messages
181
Office Version
  1. 2019
Platform
  1. Windows
Hi,

I would like to dragdown the below data which have been typed in Z1, Z2, Z3 cells respectively and get it relatively increasing...

#Sheet1!A1
#Sheet1!C1
#Sheet1!E1

Can someone please help me?

Thanks alot...

:)
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
How about this...

Code:
=OFFSET(Sheet1!$A$1,0,ROW()-2+ROW())
 
Upvote 0
Seems to be working for me. I pasted the formula in Z1 and it's incrementing the way you describe. Are you trying to return what is actually in those cells, or are you trying to return the cell references themselves?
 
Upvote 0
If you just need the text per post #1 , put in Z1 :

="#Sheet1!" & CHAR(64+(ROW()*2)-1) & 1
 
Upvote 0
What you have done also could be helpful...

Problem here is, I have literally typed "#Sheet1!A1" in Z1, then "#Sheet1!C1" in Z2, when I select both Z1 & Z2 then drag it down the references which have been typed doesn't relatively increase... :(

Or,

To make things easier,

Is there anyway to get "A1" as data in Cell A1 via formula?
 
Upvote 0
Wait a minute...wait a minute...

Wow...

That is exactly what I wanted...now do me a favor please...

My actual references should be F15, H15, J15...so on...now how can I customize your equation brother?
 
Upvote 0
Footoo's solution worked...now trying to customize it bro... :)
 
Upvote 0
Enter in Z1 :

="#Sheet1!" & CHAR(69+(ROW()*2)-1) & 1
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,485
Members
448,967
Latest member
visheshkotha

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top