Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
Hello,
I'm looking to create a new column in a table that states 'valid' or 'invalid' based on if a date field is in the past (invalid) or future (valid).
I'm struggling with how to do this. My column is in short date format (dd/mm/yyyy). My date field is in a table named Courses and the field name is employee_training_courses.expires_on.
I've tried myself to workout a DAX query or a new column but can't work it out.
Thanks in advance for your tips.
Sam
Solved! Go to Solution.
@Sam-L ,
a new column
Switch( True(),
[Date] < today(), "Invalid",
[Date] > today(), "Valid",
"Today"
)
Change as per need
Try this:
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
76 | |
72 | |
71 | |
48 | |
41 |
User | Count |
---|---|
54 | |
48 | |
33 | |
32 | |
28 |