Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Help..
I have column named "Driver_Card_Expiry_Date". I tried to use New Measure.
Months Left = DATEDIFF ([Today Date], ________________, MONTH)
The column I want won't appear. Please help tp solve. I've been at it for half a day.
Thanks.
Solved! Go to Solution.
You can't use the column as a reference in measure since measure expects and returns a single value.
Use LASTDATE() DAX function. it will take last non-blank date and calculate month difference.
E.g,
Months Left = DATEDIFF ([Today Date], LASTDATE(Driver_Card_Expiry_Date), MONTH)
Thanks Siva,
It took me my whole morning to learn about that. I just found the 5 golden rules for DAX Measures, and no.2 is No Naked Column.
I understood that and use the Calculated Columns instead. And voilaa..! It works.
MONTHS LEFT = DATEDIFF(TODAY(), DRIVER[Date Expire].[Date], MONTH)
Thanks for your input Siva !
You can't use the column as a reference in measure since measure expects and returns a single value.
Use LASTDATE() DAX function. it will take last non-blank date and calculate month difference.
E.g,
Months Left = DATEDIFF ([Today Date], LASTDATE(Driver_Card_Expiry_Date), MONTH)
Thanks Siva,
It took me my whole morning to learn about that. I just found the 5 golden rules for DAX Measures, and no.2 is No Naked Column.
I understood that and use the Calculated Columns instead. And voilaa..! It works.
MONTHS LEFT = DATEDIFF(TODAY(), DRIVER[Date Expire].[Date], MONTH)
Thanks for your input Siva !
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
123 | |
78 | |
48 | |
38 | |
37 |
User | Count |
---|---|
196 | |
80 | |
70 | |
51 | |
42 |