The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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êsUser | Count |
---|---|
65 | |
62 | |
60 | |
53 | |
30 |
User | Count |
---|---|
181 | |
82 | |
67 | |
48 | |
44 |