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

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
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,216,215
Messages
6,129,557
Members
449,516
Latest member
lukaderanged

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