• 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.

Date identification based on the value

SAN04

Member
In the attached sheet, need to identify the particular date from date range on which the value 0% is becoming 70%.
Also in the same way need to identify the particular date from date range on which value 10,000% is coming first time.

Please help

Thanks
 

Attachments

  • Excel query.xlsx
    10.2 KB · Views: 9
63115

In B5, and B6, enter criteria 70% and 10,000%

In C5, copied down :

=INDEX($1:$1,MATCH(B5,INDEX(ROUND($2:$2,2),0),0))

Regards
Bosco
 
Thanks Bosco !

But always the value will not be 70%, it could be any number % . So, pls provide the formula accordingly
 
Thanks Bosco !

But always the value will not be 70%, it could be any number % . So, pls provide the formula accordingly

Also we cannot round off the percentage.

In this i have to capture date on which first value more than zero is coming and a date on which the 100000% comes first
 
Hello all,

In the attached sheet, i have to capture date on which first value more than zero is coming and a date on which the 100000% comes first using formula.

Also, please donot round off values.

Please help!
 

Attachments

  • Excel query.xlsx
    10.2 KB · Views: 6
63125

The 1st date after zero % :
=INDEX(1:1,MATCH(1,INDEX(ISNUMBER(2:2)*(2:2>0),0),0))

The 1st date of 1st 10,000% comes :
=INDEX(1:1,MATCH(10000%,2:2,0))

Regards
Bosco
 
Back
Top