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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Arenna
New Member

Fields not appear in new measure

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.

2 ACCEPTED SOLUTIONS
SivaMani
Resident Rockstar
Resident Rockstar

@Arenna,

 

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)

View solution in original post

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 !

 

 

View solution in original post

2 REPLIES 2
SivaMani
Resident Rockstar
Resident Rockstar

@Arenna,

 

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 !

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.