second to last in row

taino8632

Board Regular
Joined
Nov 16, 2004
Messages
90
Office Version
  1. 365
Platform
  1. Windows
I am using the following formula to determine the second to last numeric value in a row.

=LOOKUP(2^15,$C2:INDEX($C2:$BB2,MATCH(2^15,$C2:$BB2)-1))

However, in cases where there is only one value in the row I am getting an #N/A error. How do I account for this error? I want to return a blank if there is only one value in the row.

Thanks for your help.
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Code:
IF(COUNT($C2:$BB2)=1,"",LOOKUP(2^15,$C2:INDEX($C2:$BB2,MATCH(2^15,$C2:$BB2)-1))
lenze
 
Upvote 0
In excel 07 or 10

=IFERROR(LOOKUP(2^15,$C2:INDEX($C2:$BB2,MATCH(2^15,$C2:$BB2)-1)),"")

In 03 or older

=IF(ISNA(LOOKUP(2^15,$C2:INDEX($C2:$BB2,MATCH(2^15,$C2:$BB2)-1))),"",LOOKUP(2^15,$C2:INDEX($C2:$BB2,MATCH(2^15,$C2:$BB2)-1)))
 
Upvote 0

Forum statistics

Threads
1,215,430
Messages
6,124,846
Members
449,194
Latest member
HellScout

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