Row reference as formula.

Luke777

Board Regular
Joined
Aug 10, 2020
Messages
246
Office Version
  1. 365
Platform
  1. Windows
Hi,

I’m sure I’ve done this dozens of times before but I’ve forgotten how and can’t seem to find the answer I’m looking for.

=‘Oct23’!X56

I’m trying to make the row reference the result of a formula. X will always be A but the number will change as the formula dictates.

The number I want is actually determined by

=DAYS(NOW(),’Oct23’!A6)*25+6

Which currently results in 56.

Thanks
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
You use the INDIRECT formula if you are building the range reference dynamically.
 
Upvote 0
=INDIRECT("A"&DAYS(NOW(),’Oct23’!A6)*25+6)

i have just used 1 sheet to view easier
1/10/23 - results in 56 - today 3/10/23

Book2
ABCD
1
2fred
3
4
5
6
7
810/1/23 0:0056
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56fred
Sheet1
Cell Formulas
RangeFormula
D2D2=INDIRECT("A"&DAYS(NOW(),A8)*25+6)
C8C8=DAYS(NOW(),A8)*25+6
 
Upvote 0

Forum statistics

Threads
1,215,152
Messages
6,123,323
Members
449,094
Latest member
Chestertim

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