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
Anonymous
Not applicable

How to create a measure using date column without aggregation?

I have 2 date columns that need to be compared to each other to see which date is greater than the other. If date1 > date2 then 0. If date1 < date2 then 1. From there I need to calculate the average between those 0-1 values. When performing DAX 

bamamatting_1-1668540067998.png

 

bamamatting_0-1668540004674.jpeg

 

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @Anonymous ;

You could create a measure as follow:

flag2 = 
AVERAGEX(SUMMARIZE('Table',[Date1],[date2],
"1",IF(MAX('Table'[Date1])>MAX('Table'[date2]),0,1)),[1])

The final show:

vyalanwumsft_0-1668577357570.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yalanwu-msft
Community Support
Community Support

Hi, @Anonymous ;

You could create a measure as follow:

flag2 = 
AVERAGEX(SUMMARIZE('Table',[Date1],[date2],
"1",IF(MAX('Table'[Date1])>MAX('Table'[date2]),0,1)),[1])

The final show:

vyalanwumsft_0-1668577357570.png


Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Dinesh_Suranga
Continued Contributor
Continued Contributor

@Anonymous ,

Hi,

Use SELECTEDVALUE function.

Thanks

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.