Forum Discussion
Anonymous
8 years agoNot applicable
IF Function - 2 Conditions,
Looking for help with this. Here is the formual I wrote: Priority Status = if(TransfersBI[BOL Status]="In Transit",IF([Days in Transit]>10,"Alert",""), if(TransfersBI[BOL Status]="In Transit",IF([D...
- 8 years ago
Anonymous , Please try this
=IF(Transfers[BOL Status]="In Transit",IF(AND(Transfers[Days in Transit]>=10,Transfers[Days in Transit]<=15),"Alert",IF(Transfers[Days in Transit]>15,"Priority")))
Ashish_Mathur
8 years agoSuper User
Hi,
Try this
=IF(TransfersBI[BOL Status]="In Transit",IF([Days in Transit]>15,"Priority",IF([Days in Transit]>10,"Alert",BLANK())),BLANK())
Hope this helps.
Anonymous
8 years agoNot applicable
this gives me the error, "the end of input was reacched"