Forum Discussion
YcnanPowerBI
Helper II
2 years agoMultiplying measure against fixed time
Hello community, I have a measure that counts number of tickets processed**1 Tickets Created = CALCULATE(COUNT(Append1[Ticket Created]))** I need to mutiply that against a fxed time value, ie. 0...
- 2 years ago
YcnanPowerBI , try this in a measure
Total Time = FORMAT(TIME(0,[1 Tickets Created] * 5,0),"hh:nn:ss")
YcnanPowerBI
Helper II
2 years agoHi, Sorry for not being more clear. Hope this helps.
Here is a screenshot of expected results. 1 Tickets Created is an output of CALCULATE(COUNT(Append1[Ticket Created])) In this example I multipied that against 5 minutes
| 1 Tickets Created | Total Time |
| 4 | 0:20:00 |
| 2 | 0:10:00 |
| 6 | 0:30:00 |
| 8 | 0:40:00 |
| 1 | 0:05:00 |
SivaMani
Resident Rockstar
2 years agoYcnanPowerBI , try this in a measure
Total Time = FORMAT(TIME(0,[1 Tickets Created] * 5,0),"hh:nn:ss")- YcnanPowerBI2 years ago
Helper II
Worked great! Thank you for your time!
- SivaMani2 years ago
Resident Rockstar
Glad that it worked, cheers!