Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi All,
Anyone can help me to calculate this formula? I want to get cumulative value (in %) using below dataset.
Ex: (40/59) * 100
40 refer to ticket id which is FR_Hour < 5
59 refer to total ticket
Thanks
Solved! Go to Solution.
Hi @twister
Try something like this.
Measure =
DIVIDE(
CALCULATE(
COUNTROWS( 'Table' ),
'Table'[FR_Hour] < 5 ),
COUNTROWS( 'Table' )
) * 100
Hi @twister
Try something like this.
Measure =
DIVIDE(
CALCULATE(
COUNTROWS( 'Table' ),
'Table'[FR_Hour] < 5 ),
COUNTROWS( 'Table' )
) * 100
nice..its work perfectly..thanks
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
25 | |
21 | |
20 | |
14 | |
13 |
User | Count |
---|---|
44 | |
37 | |
25 | |
24 | |
23 |