Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I have a column that I created through a mesuare that add two columns but it is in minutes instead of hours which I need for comparision reasons. I found several different ways to do this on the forum but was confused on how to actually impliment it.
Here is what I am wanting to do. The column in bold is what I am hoping to accomplish.
v_rpt_service Table
| ART_Resolved_Actual | ART_Resolved_Actual_Hour |
| 0 | 0 |
| 300 | 5 |
| 112 | 1.86 |
| 256 | 4.26 |
| 854 | 14.23 |
| 42 | 0.71 |
Thanks!
Solved! Go to Solution.
Divide ART_Resolved_Actual by 60.
ART_Resolved_Actual_Hour=ART_Resolved_Actual/60.
Am i missing something here , looks so simple 🙂
Thanks
Raj
Divide ART_Resolved_Actual by 60.
ART_Resolved_Actual_Hour=ART_Resolved_Actual/60.
Am i missing something here , looks so simple 🙂
Thanks
Raj
What I ended up having to do was dividing both columns by 60 that were used to create the calculated column (ART_Resolved_Actual) and then re-add them which worked.
Unfortunatly It doesn't appear to be that simple. I also ran the forumla you posted with the same result.
How ART_Resolved_Actual is being calculated ?
Thanks
Raj
ART_Resolved_Actual = CALCULATE(SUM(v_rpt_Service[Minutes_Waiting])+SUM(v_rpt_Service[Resolved_Minutes]))
Thanks!