Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Dear All,
How to count the number of "aaa" from the previous period? For example, in period 2 the number of "aaa" is 3 and the thing to look for is the number of "aaa" in the previous period, namely period 1.
What is the DAX formula for this condition?
Thanks
Kode | Period |
aaa | 1 |
aaa | 1 |
aaa | 2 |
aaa | 2 |
aaa | 2 |
aaa | 3 |
Solved! Go to Solution.
Dear annonymous1999,
Thank you for your reply..and it's work.
hello use this measure
previous count =
CALCULATE(
[Count of Period] ,
'Table'[Period] = MAX('Table'[Period]) - 1)
User | Count |
---|---|
13 | |
8 | |
8 | |
7 | |
5 |
User | Count |
---|---|
21 | |
15 | |
15 | |
10 | |
7 |