Hi,
I am trying to create a visual chart to compare an indivdual average payment against the overall average payment. In this case, in my current data I currently have an AmoutPayable column and a VetName column. I want to be able to see what the average payment is for a specific Vet and compare that against the Average across all Vets.
The end goal is to view this in a trend line so that I can see at what stage an Individual vet became higher than the average.
I have searched for this answer on the forum but as I am very new to Power BI I was unable to find the solution. Please bare my limited knowledge in mind with your responses.
Thank you all very much.
Solved! Go to Solution.
Hi @Gavin_Shales,
Assume the sample data likes below:
We can create measures:
AvgPerVet = CALCULATE(AVERAGE(Table1[AmoutPayable ]),FILTER(ALL(Table1),'Table1'[VetName]=MAX('Table1'[VetName])))
AvgAllVet = CALCULATE(AVERAGE(Table1[AmoutPayable ]),ALL(Table1))
Then create a line and clustered column chart below. You can see attached pbix file.
Best Regards,
Qiuyun Yu
Hi @Gavin_Shales,
Assume the sample data likes below:
We can create measures:
AvgPerVet = CALCULATE(AVERAGE(Table1[AmoutPayable ]),FILTER(ALL(Table1),'Table1'[VetName]=MAX('Table1'[VetName])))
AvgAllVet = CALCULATE(AVERAGE(Table1[AmoutPayable ]),ALL(Table1))
Then create a line and clustered column chart below. You can see attached pbix file.
Best Regards,
Qiuyun Yu
Check out new user group experience and if you are a leader please create your group
100+ sessions, 100+ speakers, Product managers, MVPs, and experts. All about Power BI. Attend online or watch the recordings.
User | Count |
---|---|
404 | |
199 | |
85 | |
80 | |
62 |
User | Count |
---|---|
473 | |
220 | |
135 | |
91 | |
83 |