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

Don'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.

Reply
BTRD
Regular Visitor

measure = AVERAGEX(DATEDIFF(DateA, DateB, DAY)) does not work.

Hi everybody,

 

I have 2 colonnes says DateA and DateB with date format. If I create another C Column = DateA -DateB, it works.

I have many average date difference to calculate,  so I would like to create Measures instead of Columns.

But I can't get this result.

When I use Measure = datediff(, I can't use columns, I understand that it doesn't know what level I am, I need to use an agregation like min() ?

Can someone please help me understand why it doesn't work. I want to make a calculation like :
measure = AVERAGEX(DATEDIFF(DateA, DateB, DAY))

 

Thanks in advance,

 

1 ACCEPTED SOLUTION
BeaBF
Super User
Super User

@BTRD Hi! 

The main issue is that Measures operate in an aggregated context. The DATEDIFF function expects specific date values, but Measures don't know which rows to calculate on unless you use aggregations or iterate over the table using functions like AVERAGEX.

you can use this measure:

Measure =
AVERAGEX(
YourTableName,
DATEDIFF(YourTableName[DateA], YourTableName[DateB], DAY)
)

 

if you provide me sample data and the expected result i can help you.

 

BBF

View solution in original post

2 REPLIES 2
BTRD
Regular Visitor

Hi BeaBF, thanks a lot for your explanation and help ! It works perfectly, yes !

BeaBF
Super User
Super User

@BTRD Hi! 

The main issue is that Measures operate in an aggregated context. The DATEDIFF function expects specific date values, but Measures don't know which rows to calculate on unless you use aggregations or iterate over the table using functions like AVERAGEX.

you can use this measure:

Measure =
AVERAGEX(
YourTableName,
DATEDIFF(YourTableName[DateA], YourTableName[DateB], DAY)
)

 

if you provide me sample data and the expected result i can help you.

 

BBF

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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