Offset Match Formula

Pibsandsquibs

New Member
Joined
Aug 18, 2021
Messages
16
Office Version
  1. 365
Platform
  1. Windows
Hello

I have formula that reads a number of dates entered left to right in a particular row and returns the current arrival date in the column the formula is in. Below is the formula I use. Is there a way to switch that to read the information from right to left? So in my example the I would be entering the oldest information (which is under 22/07) to the right and the the newest information (which is under 26/07) to the left.

=OFFSET(K51,0,MATCH(MAX(K51:CO51)+1,K51:CO51,1)-1)

Current example is for row 51 and the info is below. The date returned is 30/08/24.

1723724991471.png
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Most of what you explain is not visible. One way is =INDEX(target_row_range,MATCH(MAX(source_row_range),source_row_range,0)) if both rows begin in the same column, which cannot be deduced from your very short example/explanation
 
Upvote 0
For the original problem, instead of using the volatile function OFFSET, would this non-volatile formula do the same job?
Excel Formula:
=LOOKUP(9^9,K51:CO51)

Perhaps this for the new question?
Excel Formula:
=INDEX(FILTER(K51:CO51,K51:CO51<>"",""),1)
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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