Forum Discussion
Taznalem
7 years agoFrequent Visitor
How to create calculate spells ?
Hi everybody! I am developing a PBI to have a tracking of trainings. I would like have a Card where show the maximum number of days of training non-stop. If we suppose one month 1. A Calendar...
- 7 years ago
Hi Taznalem,
Please check out the demo in the attachment. The main steps are as follows.
1. Create an index that can identify the continuous days.
2. Create a measure.
Measure = MAXX ( SUMMARIZE ( 'Table1', 'Table1'[Index], "non-stop", COUNT ( 'Table1'[Training] ) ), [non-stop] )Best Regards,
Dale
Taznalem
7 years agoFrequent Visitor
Hi everybody! I am developing a PBI to have a tracking of trainings. I would like have a Card where show the maximum number of days of training non-stop. If we suppose one month:
1. A Calendar with all days of the month
2. A Query with the trainings. These are classified by days and include all the relevant information about the trainings
The question if that I don't know how to calculate the maximum number of days that I have been training non-stop along the month. Thanks in advance
- Ashish_Mathur7 years agoSuper User
Hi,
Share some data and show the expected result.