hello,
i have a data set of custumers status en date and i only want to show the last status of thath customer for example:
customer A status open date 1-1-2020
customer C status closed date 6-1-2020
customer B status closed date 5-1-2020
customer A status defintive date 3-1-2020
customer C status open date 4-1-2020
customer A status Closed date 6-1-2020
i my powerbi tables it shows now everything but i only want the last status so for
customer A i want the status Closed
Customer C status closed
and the other status i dont want to show so if on 8-1-2020 the status of customer a changes i want the status of 8-1-2020 for custmor A
hope someone can help me!!!
Solved! Go to Solution.
Hi @Krijgerss21
Create a measure like :
latest_status =
var _maxdate=MAX('Table'[date])
return CALCULATE(SELECTEDVALUE('Table'[status]),ALLEXCEPT('Table','Table'[customer]),'Table'[date]=_maxdate)
Then you will get a result like below :
When you add new row for A and the status is open , then you will get a result like this :
I have attached my pbix file , you can refer to it .
Best Regards,
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Krijgerss21
Create a measure like :
latest_status =
var _maxdate=MAX('Table'[date])
return CALCULATE(SELECTEDVALUE('Table'[status]),ALLEXCEPT('Table','Table'[customer]),'Table'[date]=_maxdate)
Then you will get a result like below :
When you add new row for A and the status is open , then you will get a result like this :
I have attached my pbix file , you can refer to it .
Best Regards,
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Krijgerss21
there are multiple ways to do so, you may create a column with such code:
I tried and it worked like this:
in Table Visual:
Hello @Krijgerss21 ,
Create a measure like this
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
96 | |
75 | |
41 | |
30 | |
29 |
User | Count |
---|---|
138 | |
95 | |
85 | |
48 | |
40 |