Find Value in Last Cell from specific cells

Celticshadow

Active Member
Joined
Aug 16, 2010
Messages
419
Office Version
  1. 365
Platform
  1. Windows
Hi All

What formula do I need to find the last entered value in a row of cells that would be in

A1, C1, E1, G1, I1, K1, N1, P1, R1, T1.

Thanks in advance.

Kind Regards
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
if the cells only contain numeric values then use the following and put your range of cells where it says range.

=INDEX(range,MATCH(9.99999999999999E+307,range))
 
Upvote 0
Hi Bryonwoods30

I have entered that formula using the cells mentioned in my post but I keep getting an error message (with the formula).

Kind Regards
 
Upvote 0
Hi Byronwoods30

I believe I have a problem as it is those specific cells I require to look at. I In between those cells is data I do not wish to look at.

Kind Regards
 
Upvote 0
Hello,

Try this Array Formula, must hit Control+Shift+Enter, not just Enter.

=INDEX((A1, C1, E1, G1, I1, K1, N1, P1, R1, T1),,,MATCH(2,1/CHOOSE({1,2,3,4,5,6,7,8,9,10},A1,C1,E1,G1,I1,K1,N1,P1,R1,T1)))
 
Upvote 0
Hello,

Try this Array Formula, must hit Control+Shift+Enter, not just Enter.

=INDEX((A1, C1, E1, G1, I1, K1, N1, P1, R1, T1),,,MATCH(2,1/CHOOSE({1,2,3,4,5,6,7,8,9,10},A1,C1,E1,G1,I1,K1,N1,P1,R1,T1)))

Hi Haseeb Avarakkan

That works an absoloute treat, many thanks for you reply. Another problem solved, thanks very much it is really appreciated.

Kind Regards
 
Upvote 0
Hi All

What formula do I need to find the last entered value in a row of cells that would be in

A1, C1, E1, G1, I1, K1, N1, P1, R1, T1.

Thanks in advance.

Kind Regards
Just an observation...

The cells follow a pattern of every other cell up to K1 then it skips 2 cells.

Is that the correct range or is it supposed to be evey other cell throughout the range?

If it's supposed to be every other cell:

A1, C1, E1, G1, I1, K1, M1, O1, Q1, S1

=LOOKUP(2,1/((MOD(COLUMN(A1:S1)-COLUMN(A1),2)=0)*A1:S1),A1:S1)
 
Upvote 0

Forum statistics

Threads
1,224,548
Messages
6,179,448
Members
452,915
Latest member
hannnahheileen

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