Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I am trying to calculate the % difference between two table visuals.
The table to the left of the red line is filtered differently than the table to the right of the line. These are two different table visuals and is not connected in any way other than pulling from the same main data set.
I want to find the percent difference between Avg. Base Salary and the Market 50th.
I tried various DAX formulas like
This reprot would strictly be exported to PDF and not as excel - hence why I am fine with not creating one set table.
Thanks the the help/advice!
Hi @Anonymous -create measures to calculate the "Avg. Base Salary" and the "Market 50th" values.
AvgBaseSalary = AVERAGE('Survey Data'[Base Salary])
Market50th = MEDIAN('Survey Data'[Market 50th])
create a measure to calculate the % difference between
PercentDifference =
VAR AvgBase = [AvgBaseSalary]
VAR Market = [Market50th]
RETURN
DIVIDE(AvgBase - Market, AvgBase)
you can export to pdf >> Go to the File menu in Power BI Desktop."Export to PDF" option is there.
Hope this helps
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 52 | |
| 39 | |
| 15 | |
| 15 |
| User | Count |
|---|---|
| 94 | |
| 81 | |
| 34 | |
| 29 | |
| 25 |