Forum Discussion
AdamKeever1
6 years agoQrew Commander
Try:
If(
[Cleared]=0, "Outstanding",
[Cleared] = [Check], "Cleared",
[Cleared] != [Check], "Issue",
"No Status"
)
Looks like the numeric fields are zero if blank.
If(
[Cleared]=0, "Outstanding",
[Cleared] = [Check], "Cleared",
[Cleared] != [Check], "Issue",
"No Status"
)
Looks like the numeric fields are zero if blank.
JamesMackay
6 years agoQrew Member
Thank you for all your help? One follow up question if I wanted to calculate for only checks with a status of Outstanding how many days they have been outstanding how would I filter that. I know the formula would be today() - [check date], but if I don't want a value to calculate for checks cleared how would the filter work