Hi,
Can you please help to get the formula where I have more than 1000 lines and it needs to be check on daily basis. I have attached the file for you reference.
Many thanks for your help in advance.
Regards
Giriraj
Hi ,
I am not clear on what you want to do.
Can you upload the workbook which has all of your data , so that it becomes clear ?
Narayan
.....
The below formula is working
=IF(G5<100,"A",IF(G5<500,"B",IF(G5<1000,"C",IF(G5>1000,"D"))))......
=IF(G5<100,"A",IF(G5<500,"B",IF(G5<1000,"C",IF(G5>1000,"D"))))
But, if G5 =1000, the above formula will return "FALSE".
To fix it by adding "=" as in :
=IF(G5<100,"A",IF(G5<500,"B",IF(G5<1000,"C",IF(G5>=1000,"D"))))
Or, by this shorter :
=IF(G5<100,"A",IF(G5<500,"B",IF(G5<1000,"C","D")))
And, here's some possible :
=MID("ABCD",MATCH(G5,100*{0,1,5,10}),1)
=TEXT(0&G5-100,"[>=900]\D;[>=400]C;\B;A")
Regards
=IF(G5<100,"A",IF(G5<500,"B",IF(G5<1000,"C",IF(G5>1000,"D"))))
But, if G5 =1000, the above formula will return "FALSE".
To fix it by adding "=" as in :
=IF(G5<100,"A",IF(G5<500,"B",IF(G5<1000,"C",IF(G5>=1000,"D"))))
Or, by this shorter :
=IF(G5<100,"A",IF(G5<500,"B",IF(G5<1000,"C","D")))
And, here's some possible :
=MID("ABCD",MATCH(G5,100*{0,1,5,10}),1)
=TEXT(0&G5-100,"[>=900]\D;[>=400]C;\B;A")
Regards