Choose amount appears at first coloums

J

JJ

I need some help.
How to choose amount appear at first coloums for each rows?
Lets say I have coloum A-Z and row 1-1000.
Each coloums has amount and its appear first time at different coloum for
each row.
How can I choose amount from the first time its appear?
Thanks
 
B

Bob Phillips

Try this array formula

=INDEX(A1:Z1,MIN(IF(A1:Z1<>"",COLUMN(A1:Z1))))

HTH

Bob
 
J

Jacob Skaria

Try the below non-array formula...

=INDEX(A1:Z1,MATCH(TRUE,INDEX(A1:Z1<>"",),))
 
J

Jacob Skaria

If you have default 0's which are to be ignored..then try

=INDEX(A1:Z1,MATCH(TRUE,INDEX(A1:Z1<>0,),))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top