Forum Discussion
ayoubb
Helper IV
6 years agocalls ring less than 1min
Please i want to calculate how many calls ring less than 1min
- 6 years ago
@ayoubb, Try a new column as a
nueva columna: if([ring duration] <time(0,1,0),1,0)
amitchandak
Super User
6 years ago@ayoubb, Try a new column as a
nueva columna: if([ring duration] <time(0,1,0),1,0)
- ayoubb6 years ago
Helper IV
IS THIS DAX CORRECT:
Calls less 1>MIN = CALCULATE(COUNT(BENZ[False attempt?]), 'BENZ'[False attempt?] IN {"NO"},"BENZ"[Ring duration]<time(0,1,0),1,0)- v-xicai6 years ago
Community Support
Hi ayoubb ,
You may change your formula like DAX below.
Calls less 1>MIN = CALCULATE ( COUNT ( 'BENZ'[False attempt?] ), FILTER ( 'BENZ', 'BENZ'[False attempt?] = "NO" && 'BENZ'[Ring duration] < TIME ( 0, 1, 0 ) ) )Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.