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!Get Fabric certified for FREE! Don't miss your chance! Learn more
Solved! Go to Solution.
Hi @sraj
You're asking DATEDIFF the difference in minutes between the two date-times. It doesn't take the seconds into account.
So there is only 1 minute difference betwen 12:13 and 12:14.
You need to change MINUTE to SECOND and you'll get 98 seconds, then convert that into minutes.
# of Mins APPWAITtime =
VAR _Diff = DIVIDE(DATEDIFF(SELECTEDVALUE('vw_MeetingWaitTimes'[MoveToQueue]), SELECTEDVALUE('vw_MeetingWaitTimes'[InPlace]),SECOND),60)
VAR _Mins = INT(_Diff)
VAR _Seconds = _Diff - _Mins
RETURN _Mins + (_Seconds * 60 / 100)
Regards
Phil
Proud to be a Super User!
Hi @sraj
Imposible to say what is hapenning without seeing your data that the measure is acting on. Can you provide it? At least a snapshot of the data producing blanks?
As the measure works with my data, something must be different at your end.
Regards
Phil
Proud to be a Super User!
Hi @sraj
You're asking DATEDIFF the difference in minutes between the two date-times. It doesn't take the seconds into account.
So there is only 1 minute difference betwen 12:13 and 12:14.
You need to change MINUTE to SECOND and you'll get 98 seconds, then convert that into minutes.
# of Mins APPWAITtime =
VAR _Diff = DIVIDE(DATEDIFF(SELECTEDVALUE('vw_MeetingWaitTimes'[MoveToQueue]), SELECTEDVALUE('vw_MeetingWaitTimes'[InPlace]),SECOND),60)
VAR _Mins = INT(_Diff)
VAR _Seconds = _Diff - _Mins
RETURN _Mins + (_Seconds * 60 / 100)
Regards
Phil
Proud to be a Super User!
I am not sure why but after I used this all I am seeing blanks, no values. Do I need to change the format or something?
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 59 | |
| 48 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 107 | |
| 104 | |
| 39 | |
| 27 | |
| 27 |