The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
16 | |
8 | |
6 | |
6 | |
5 |
User | Count |
---|---|
23 | |
13 | |
13 | |
8 | |
8 |