Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello Friends, I would like to kow how many unique contract number that their expired date is still after todays date. For example, the picture attached below show that C00001 is not expired as per todays date and C00002 has expired. So only C00001 can consider active. May I know how can I code this ?
Solved! Go to Solution.
@Anonymous ,
New column
=
Switch(True(),
[Contract Expiry Date] >= today(), "Active"
"Expired")
Thank you so much !! this is very helpful !!!😁