Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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 !!