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
Charu
Post Patron
Post Patron

Difference between two columns and finding the Average it

Dear All,

 

Please help me to write the formula to find the difference between two date columns and then take the average of that.

 

Below is the sample

 

LAST_UPDATED_DATECREATION_DATEDAY DIFF 
10/4/2018 0:009/30/2018 0:004Average =1.428571429
10/1/2018 0:009/30/2018 0:001 
10/1/2018 0:009/30/2018 0:001 
10/1/2018 0:009/30/2018 0:001 
10/1/2018 0:009/30/2018 0:001 
10/1/2018 0:009/30/2018 0:001 
10/1/2018 0:009/30/2018 0:001 

 

Average to be shown in the CARD visual.

 

Thanks in advance

1 ACCEPTED SOLUTION

Hi @Greg_Deckler

 

Calculated Column for DATEDIFF is throwing an error saying "Function DATEDIFF is not allowed as part of calculated Column DAX expressions on DirectQuery models.

 

So I tried the DATEDIFF with Measure and it's accepting only with aggregate function like MIN,MAX etc,like below

1.DAY DIFF = DATEDIFF(MIN('Table1'[LAST_UPDATED_DATE]),MIN('Table1'[CREATION_DATE]),DAY)
 
2.AVG OF DAY = AVERAGEX('Table1','Table1'[DAY DIFF])
 
It's working fine.
 
Thank you so much for your timely support.

View solution in original post

5 REPLIES 5
Greg_Deckler
Super User
Super User

Well, you should be able to create a column:

 

DAY DIFF = DATEDIFF([LAST_UPDATED_DATE],[CREATION_DATE],DAY)

 

And then a measure:

 

Average of DAY DIFF = AVERAGEX('Table',[DAY DIFF])


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hi @Greg_Deckler

 

Calculated Column for DATEDIFF is throwing an error saying "Function DATEDIFF is not allowed as part of calculated Column DAX expressions on DirectQuery models.

 

So I tried the DATEDIFF with Measure and it's accepting only with aggregate function like MIN,MAX etc,like below

1.DAY DIFF = DATEDIFF(MIN('Table1'[LAST_UPDATED_DATE]),MIN('Table1'[CREATION_DATE]),DAY)
 
2.AVG OF DAY = AVERAGEX('Table1','Table1'[DAY DIFF])
 
It's working fine.
 
Thank you so much for your timely support.

Glad you got it sorted out. Yeah, DirectQuery causes some issues with certain DAX functions.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
AlB
Super User
Super User

Hi @Charu

 

Try this for your measure:

 

DiffAvg =
AVERAGEX ( Table1, Table1[ LAST_UPDATED_DATE] - Table1[CREATION_DATE] )

 

Hi @AlB

 

When I create the AverageX measure with two date fields received the below error message

ORA-00904:"t6"."CREATION_DATE":invalid identifier.The exception was raised by the IDbCommand interface

 

 

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.