Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello friends, how are you?
I need help with the following scenario: I have several cars, where there is a year related to each car.
Through the selected year, I had a status according to the year of manufacture of the car. To do this, I created a parameter where it adds +1 to the year and brings the status dynamically according to the year of the parameter.
In the StatusMeasure by StatusType graph, information is generated dynamically with the year parameter. Every time you modify the parameter bar, it modifies the graph.
However, in the StatusMeasure by Car and StatusType graph, it shows each status related to the car. Is it possible to consolidate which car it is and bring up the number of occurrences (NA, OK, Recall)?
I've attached the pbix file.
calculate clients.pbix
Regards
Hi @msam86 ,
If you want to check each car and all three statuses associated with it, we can first create a new measure as shown below:
ConsolidatedStatus =
VAR NA_Count = countx(
filter(('Data'),[StatusPerYear]="NA"),[StatusPerYear])
VAR OK_Count = countx(
filter(('Data'),[StatusPerYear]="Ok"),[StatusPerYear])
VAR Recall_Count = countx(
filter(('Data'),[StatusPerYear]="Recall"),[StatusPerYear])
RETURN
"NA: " & NA_Count & ", OK: " & OK_Count & ", Recall: " & Recall_Count
Then modify the chart like this:
In this way, when we hover on the part of the visual, we can view different types of cars and the number of associated states.
Best regards,
Joyce
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @v-yajiewan-msft,
Thanks for your response.
I think you solved part of my problem. Now I can see the consolidated cars, but I need to count this status (Recall, Ok and NA), and return this number by type of car.
It's possible?
Regards
Hi @msam86 ,
Yes, you could check the count of status by type of car in Tooltips:
I saw it in the tooltips. I just want to add ConsolidatedStatus of car. I would like to see for Volvo number 3 (NA 2 + OK 0 + Recall 1).
This way it will be reflected for other cars and the pie chart will be cleaner.
Thanks a lot for your help.