• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Options for nested Ifs

Neag

New Member
Hi... I have data for 40,000 customers (in rows) for 60 months(in column). Each column has three possible values 0,1,NA.

I want to check when 1 appears for first time each customer and then map the month in header of that column as output. I do not want to use nested if.

I am really only a beginner in excel, please help.
 
It very much depends on the version of Excel you are using and even where you want to place the result.
The sort of formulas that may be useful include
Code:
= MINIFS(dateHdr, customerRecord, 1)

= XLOOKUP(1, customerRecord, dateHdr)

= INDEX( dateHdr, MATCH( 1, customerRecord, 0) )
 
Back
Top