Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap

Reply
Syndicate_Admin
Administrator
Administrator

CREATE TEXT CATEGORIES FOR THE DATE FIELD

HELLO, I AM NEW TO POWER BI AND I AM SLOWLY LEARNING, I HAVE A SMALL PROBLEM

I HAVE A DATE FIELD, AND I NEED TO CREATE A NEW FIELD THAT CATEGORIZES THAT DATE FIELD FROM TODAY IN ADELTANTE WITH "WITHIN DEADLINE" AND FROM YESTERDAY BACKWARDS WITH "EXPIRED"

CAN ANYONE HELP ME?

1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

Hi @Syndicate_Admin  @avaldiviezo 

 

You can add a new column to your table with this DAX expression:


DATA CATEGORIZES = 
Var _Today = TODAY()
Var _Date = Table[Your Date Column Name]
Return
IF(_Date<_Today,"EXPIRED","WITHIN DEADLINE")

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 



 

View solution in original post

2 REPLIES 2
Syndicate_Admin
Administrator
Administrator

thanks, it was the right solution,

VahidDM
Super User
Super User

Hi @Syndicate_Admin  @avaldiviezo 

 

You can add a new column to your table with this DAX expression:


DATA CATEGORIZES = 
Var _Today = TODAY()
Var _Date = Table[Your Date Column Name]
Return
IF(_Date<_Today,"EXPIRED","WITHIN DEADLINE")

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 



 

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

Check out the May 2025 Power BI update to learn about new features.

May 2025 Monthly Update

Fabric Community Update - May 2025

Find out what's new and trending in the Fabric community.