Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
qConsider the below table:
id | rag | date |
101 | red | 01/06/2020 |
101 | red | 02/06/2020 |
103 | red | 01/06/2020 |
103 | green | 02/06/2020 |
103 | green | 05/06/2020 |
101 | green | 05/06/2020 |
I'm looking to create two measures:
Desired outcome for 1
count_prior | |||
red | amber | green | |
101 | 2 | ||
103 | 1 | 1 |
Desired outcome for 2
count_latest | |||
red | amber | green | |
101 | 1 | ||
103 | 1 |
Thank you in advance
Solved! Go to Solution.
Here are two expressions that should work.
Count Latest =
VAR __maxdate =
CALCULATE ( MAX ( 'Table'[date] ), ALLSELECTED ( 'Table' ) )
RETURN
CALCULATE ( COUNT ( 'Table'[id] ), 'Table'[date] = __maxdate )
Count Prior =
VAR __maxdate =
CALCULATE ( MAX ( 'Table'[date] ), ALLSELECTED ( 'Table' ) )
RETURN
CALCULATE ( COUNT ( 'Table'[id] ), 'Table'[date] < __maxdate )
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Here are two expressions that should work.
Count Latest =
VAR __maxdate =
CALCULATE ( MAX ( 'Table'[date] ), ALLSELECTED ( 'Table' ) )
RETURN
CALCULATE ( COUNT ( 'Table'[id] ), 'Table'[date] = __maxdate )
Count Prior =
VAR __maxdate =
CALCULATE ( MAX ( 'Table'[date] ), ALLSELECTED ( 'Table' ) )
RETURN
CALCULATE ( COUNT ( 'Table'[id] ), 'Table'[date] < __maxdate )
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
User | Count |
---|---|
25 | |
11 | |
8 | |
7 | |
6 |
User | Count |
---|---|
24 | |
13 | |
12 | |
10 | |
6 |