Forum Discussion

sarah8991's avatar
sarah8991
Frequent Visitor
4 years ago
Solved

Labelling Expired, Soon to Expire and Valid from End Date column

Hi,   I just started learning DAX- not sure if this should be done in DAX or Power Query. But what I'm trying to do is have a column that is automated to output "Expired", "Soon to Expire" and "Val...
  • truptis's avatar
    4 years ago

    Hi sarah8991 , Please check if the datatype of End Date column is a String or Date. If it is String then convert it into Date.
    Also, Try this:
    Result = if(day([enddate]) > Today(), "Expired", if(day([end date])+90 < Today(),"Valid", "Soon to expire"))

     

    sarah8991 -> hit the thumbs up & mark it as a solution if it helps you. Thanks.