Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have two dates I would like get the differnece of. One is [First Response] the other is [Created]. In some cases [First Response] is null. When [First Response] is null i would like to ignore it from the calcualtion of the measure.
I've tried writing this measure several different ways. Mostly using CALCULATE. But i usually end up with a "Invaild OADate value" error. I even tried making a condinal column that says TRUE if [First Response] is has a value or FALSE if the [First Response] is null and using this measure
Solved! Go to Solution.
Hi @MarioScapellato,
You should do a SUMX to make the calculation. You cannot sum dates you need to calculate the difference and then sum.
It should look something like this.
Days = SUMX ( Table1; IF ( Table1[First Response] = BLANK (); 0; Table1[First Response] - Table1[created] ) )
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @MarioScapellato,
You should do a SUMX to make the calculation. You cannot sum dates you need to calculate the difference and then sum.
It should look something like this.
Days = SUMX ( Table1; IF ( Table1[First Response] = BLANK (); 0; Table1[First Response] - Table1[created] ) )
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Portuguêsthanks @MFelix
There's one more issue i'm having though. I'm unable to change this measure to be in a date time format. The end goal is to show this as HH:mm. It appears that using a sumx doen't allow me to change the data type to date/time. Do you know of a way around this?
Try to add the following measure:
Measure = (TRUNC([Days];0)) & " " & FORMAT(([Days]-TRUNC([Days];0)*60);"hh:mm")
Not sure if it's ok on calculation.
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português