Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi Folks,
Looking to create a visual from that can show the assements of IDs by QTR, with few rules applied.
Below is what the data would look like. Assements made of IDs.
- If more than one assement made in a QTR then Pick the latest one for the visual
- If no assement done in a QTR then ID not to be counted in that QTR
Below is a reference of what I need to visualize
Solved! Go to Solution.
@AlwaysAGooner
You can create a DAX measure to get the latest assessment per quarter:
Latest_Assessment =
VAR MaxDate =
CALCULATE(
MAX('Table'[Assessment Date]),
ALLEXCEPT('Table', 'Table'[ID], 'Table'[Quarter])
)
RETURN
CALCULATE(
SELECTEDVALUE('Table'[Assessment Score]),
'Table'[Assessment Date] = MaxDate
)
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!
Hi,
Share data in a format that can be pasted in an MS Excel file. Also, show the expected result in a simple table format.
Hi @AlwaysAGooner please check this measures
@AlwaysAGooner
You can create a DAX measure to get the latest assessment per quarter:
Latest_Assessment =
VAR MaxDate =
CALCULATE(
MAX('Table'[Assessment Date]),
ALLEXCEPT('Table', 'Table'[ID], 'Table'[Quarter])
)
RETURN
CALCULATE(
SELECTEDVALUE('Table'[Assessment Score]),
'Table'[Assessment Date] = MaxDate
)
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 48 | |
| 35 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 134 | |
| 110 | |
| 59 | |
| 39 | |
| 32 |