Forum Discussion
Sam_Perryman
Jun 19, 2021Copper Contributor
IFS Formula or IF formula
Hi Hoping someone can assist me; I am developing a training matrix as per table below. The status field has the current formula: =IF(G7<0,"Expired",IF(G7<30,"Expiring Soon","")) The problems...
- Jun 19, 2021
Perhaps
=IF(G7<0,"Expired", IF(G7<30,"Expiring Soon","Active")) =IFS(G7<0,"Expired", G7<30,"Expiring Soon",TRUE, "Active"))
SergeiBaklan
Jun 19, 2021Diamond Contributor
Perhaps
=IF(G7<0,"Expired",
IF(G7<30,"Expiring Soon","Active"))
=IFS(G7<0,"Expired", G7<30,"Expiring Soon",TRUE, "Active"))
- Sam_PerrymanJun 19, 2021Copper ContributorThank you Sergei for your time.
BINGO!!
Thank you- SergeiBaklanJun 20, 2021Diamond Contributor
Sam_Perryman , you are welcome