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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
ebgumapas
New Member

DAX command to automate expiry/next date and provide comments whether the next due date

Hi Sirs/ Mam,

 

Requesting for assistance for a possible DAX command, that, when I enter columns "Last Inspection Date",

It will automatically provide expiry date under column "Next Due Date".

 

Likewise, remarks shall be provided whether the Due Date will be within 2 months Due, 1 Month Due and Overdue.

Will appreciate feedback and assistance regarding this matter.

 

Regards,

 

Von

 

ebgumapas_0-1674970247911.png

 

2 REPLIES 2
ebgumapas
New Member

Thank you sir. Will revert once place.

 

 

amitchandak
Super User
Super User

@ebgumapas , Not very clear, But date diff can help

 

example, new column

=

var _diff=  datediff([due Date], today(), month)

return

Switch( True() ,

_diff <=1, "Due Within",

_diff =2, "Due in 2 month" ,

//Add others

Blank())

Switch-Case statement of #PowerBI: https://www.youtube.com/watch?v=gelJWktlR80&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=56

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

Top Solution Authors