cell reference from a cell reference

drewnis

New Member
Joined
Sep 9, 2015
Messages
2
I can't figure out how to ask this question so google will give me an answer. I've often wanted to do this. It doesn't matter why. Please don't be a troll and tell me why I'm wrong to want to do this.

Here's the formula I entered in A1:

=if($B1>1,"yep","no")


And then I pasted it into thirty additional cells below it. So I get a series of formulas that are automagically changed to yield this:

=if($B2>1,"yep","no")
=if($B3>1,"yep","no")
...
=if($B30>1,"yep","no")


I want to be able to replace the "$B1" in all those cells with "$C1" or "$D1" without having to rewrite the formula and paste it into all the cells below it over and over again.

So what I'd like to do is just type "$B1" in cell A32. Then I want the formula in A1 to automatically insert into the formula whatever I've typed in A32 and use that in the same way as if I'd literally typed it.

So instead this:
=if($B1>1,"yep","no")
I want this:
=if((=A32)>1,"yep","no")

But I just don't know the right command to get it to do that. "(=A32)" doesn't work. But there must be something that has that effect right?

Thank you so much for the help.
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
The problem you have is that each cell is referencing a different row, so if you enter B1 in cell A32 then use

=IF(INDIRECT($A$32)>1,"yep","no")

Every cell will look at B1!

The way around this would be to enter B into A32 then use

=IF(INDIRECT($A$32&ROW())>1,"yep","no")
Which adds the row number to B, this will only work providing that the cell you want to reference is on the same row.


 
Upvote 0

Forum statistics

Threads
1,216,820
Messages
6,132,891
Members
449,768
Latest member
LouBa

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