The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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 !
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
78 | |
77 | |
44 | |
38 |
User | Count |
---|---|
150 | |
116 | |
68 | |
64 | |
58 |