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
I have a table with unpivoted data, shown below. The ID column has repeat values because the transaction goes through several stages captured in the Process Step column
My objective: Create a measure that calculates the maximum date from the Status Change Date Column, but only for Upload and "Approval" Process Step. So, where Process Step is Upload OR Approval, Max(Status Change Date)
Solved! Go to Solution.
Hi @Anonymous
Is this what you are after. If it is not, please show an example of your expected result.
Max Date = CALCULATE(MAX('Table'[Status Change Date]), FILTER(ALL('Table'), 'Table'[Process Step]="Approval" && 'Table'[Transaction ID] = SELECTEDVALUE('Table'[Transaction ID])))
Regards
Phil
Proud to be a Super User!
Hi @Anonymous
Is this what you are after. If it is not, please show an example of your expected result.
Max Date = CALCULATE(MAX('Table'[Status Change Date]), FILTER(ALL('Table'), 'Table'[Process Step]="Approval" && 'Table'[Transaction ID] = SELECTEDVALUE('Table'[Transaction ID])))
Regards
Phil
Proud to be a Super User!