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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

HEEELP with DAX Commands

Please Help.

I started using power BI recently and I need help.

i Need to get the ammount of days Left Before our service Expires to put it on a Table. (in Days)

I hace the dates when the client Purchases the service and the Expiration Date of the service, but i need to get the amount of days left before it expires.

 

Please Help

Thks

1 ACCEPTED SOLUTION
AUaero
Responsive Resident
Responsive Resident

Assuming your table looks something like this:

AUaero_0-1659049021533.png

Then this measure should work.  If you want to show the days since expiration, just get rid of the switch statement.

 

# Days Until Expiration = 
VAR TodayDate = UTCTODAY() - 6/24 // 6 indicates the number of hours from UTC (Central Time)
VAR ExpDate = MAX(ExpirationDates[ExpirationDate])

RETURN
SWITCH(
    TRUE(),
    DATEDIFF(TodayDate, ExpDate, DAY) < 0, 0,
    DATEDIFF(TodayDate, ExpDate, DAY)
)

 

Please accept this a solution if this solves your problem.

 

View solution in original post

2 REPLIES 2
AUaero
Responsive Resident
Responsive Resident

Assuming your table looks something like this:

AUaero_0-1659049021533.png

Then this measure should work.  If you want to show the days since expiration, just get rid of the switch statement.

 

# Days Until Expiration = 
VAR TodayDate = UTCTODAY() - 6/24 // 6 indicates the number of hours from UTC (Central Time)
VAR ExpDate = MAX(ExpirationDates[ExpirationDate])

RETURN
SWITCH(
    TRUE(),
    DATEDIFF(TodayDate, ExpDate, DAY) < 0, 0,
    DATEDIFF(TodayDate, ExpDate, DAY)
)

 

Please accept this a solution if this solves your problem.

 

Anonymous
Not applicable

Thank you so much!

You did it.

eres lo maximo bro!

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.