Trying to get the first blank in a range and pull data from another cell in that row

RHeller

New Member
Joined
Apr 17, 2024
Messages
3
Office Version
  1. 365
Platform
  1. Windows
For instance I get the cell address of $P$119 but I need the data from $A$118

=CELL("address",INDEX(P104:P133,MATCH(TRUE,ISBLANK(P104:P133),0))) this is where I get the $P$119 result but need the data
from $A$118 (the last date data was entered).

Column A contains dates and column P shows where data has been entered up to.

Any help is appreciated, I'm new to this forum.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
1713379482048.png
 
Upvote 0
Are you sure you don't just want something like this:

Excel Formula:
=XLOOKUP(TRUE,($P$104:$P$133<>""),$A$104:$A$133,"",0,-1)
 
Upvote 0

Forum statistics

Threads
1,215,233
Messages
6,123,772
Members
449,123
Latest member
StorageQueen24

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