Look up todays date in a column and return the row number to another cell

coastalkidd

New Member
Joined
Dec 18, 2023
Messages
1
Office Version
  1. 365
Platform
  1. MacOS
Hey!

I'm having some issues with a spreadsheet i am trying to create.

I need to do a look up for todays date in a column and return the same number as the row back to a cell on the same line.
 

Attachments

  • Screenshot 2023-12-18 at 3.46.03 pm.png
    Screenshot 2023-12-18 at 3.46.03 pm.png
    7.7 KB · Views: 9

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Hey!

I'm having some issues with a spreadsheet i am trying to create.

I need to do a look up for todays date in a column and return the same number as the row back to a cell on the same line.
Assuming you want to look up in Column A

Excel Formula:
=MATCH(TODAY(),INDEX(A:A,0,1),0)
 
Upvote 0
Welcome to the MrExcel board!

look up for todays date in a column and return the same number as the row
From your image it looks more like you might want to look for today's date in a row and return the number of the column.

Could it be this that you are looking for?

23 12 18.xlsm
ABCDEFGH
1Today's column number14/12/202315/12/202318/12/202319/12/202320/12/2023
26
Lookup Today
Cell Formulas
RangeFormula
A2A2=MATCH(TODAY(),1:1,0)


If not please give a fuller explanation, sample data and expected result (preferably with XL2BB not just an image)

BTW, I have modified your thread title. See #14 of the Forum Rules regarding the use of all upper case in titles or posts.

@SanjayGMusafir
INDEX(A:A,0,1)
is the same as just
A:A
:)
 
Upvote 0
My take on this
Fluff.xlsm
ABCD
115/12/202318/12/202319/12/2023
281908112
3432466
44283429
538553893
699259997
Sheet5
Cell Formulas
RangeFormula
A2:A6A2=XLOOKUP(TODAY(),$B$1:$D$1,B2:D2,"")
 
Upvote 0
My take on this
Could well be right. If so, then maybe FILTER to get them all at once.

23 12 18.xlsm
ABCD
1Today15/12/202318/12/202319/12/2023
281908112
3432466
44283429
538553893
699259997
Lookup Today (2)
Cell Formulas
RangeFormula
A2:A6A2=FILTER(B2:D6,B1:D1=TODAY(),"")
Dynamic array formulas.
 
Upvote 0

Forum statistics

Threads
1,215,094
Messages
6,123,071
Members
449,092
Latest member
ipruravindra

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