Using a number in a cell to reflect the cell number in another formula

Mrkall34

New Member
Joined
Aug 10, 2022
Messages
2
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
If any one can help please

I want to type a number one cell , then use a formula in another cell to use this number

so formula would be =c15:c52, the 15 is fixed but the 52 could be anything from 16 to 534 I want to use the number in the other cell to be number on the second formula so I type this and the formula picks this up

thanks
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Replace C52 with INDIRECT("C"&A1) where A1 contains the row value
Be aware that INDIRECT is a volatile function ( if you don't use it many times on the same sheet it won't slow down)
 
Upvote 0
Great thank you , will try this morning thanks for the super speedy reply
 
Upvote 0
Another non-volatile option is
Excel Formula:
=C2:INDEX(C:C,C1)
where C1 contains the number.
 
Upvote 0

Forum statistics

Threads
1,215,556
Messages
6,125,495
Members
449,235
Latest member
Terra0013

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