Forum Discussion
Add a custom column to track the date
- 9 years ago
Hi,
I assume your table called “itemInfo”. You can use following formula to calculate expired days
Expired_Days = value(TODAY()) - value(itemInfo[expireddate])
You can use formula below to calculate its expired status.
Expired_status = if(itemInfo[Expired_DAys] < 0, "Not Expired",
if(itemInfo[Expired_DAys] < 30, "Less than 30",
if(itemInfo[Expired_DAys] >= 30 && itemInfo[Expired_DAys] < 60, " more than 30 and less than 60",
"more than 60")))
Best Regards
Alex
Hi,
I assume your table called “itemInfo”. You can use following formula to calculate expired days
Expired_Days = value(TODAY()) - value(itemInfo[expireddate])
You can use formula below to calculate its expired status.
Expired_status = if(itemInfo[Expired_DAys] < 0, "Not Expired",
if(itemInfo[Expired_DAys] < 30, "Less than 30",
if(itemInfo[Expired_DAys] >= 30 && itemInfo[Expired_DAys] < 60, " more than 30 and less than 60",
"more than 60")))
Best Regards
Alex