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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
We wanted to get the table in power BI Dashboard by calculating formulas like minus, percentage, ratio etc.
Table format
Total Debtors 100
Overdue 20
Not overdue 80 (100-20)
Sales 20
Debtor Turnover ratio 20 (20/100*100)
So it is required all formulas come in power bi dashboard as the same is not in the backend data.
Please resolve at the earliest
Solved! Go to Solution.
Hi @Anonymous ,
Based on your description, there are two 20s in your data and it is impossible to determine which one was used for the final result. You can use selectedvalue to select the data in the table. Here is a simple example
Create mesures
Not overdue = SELECTEDVALUE('Table'[Total Debtors]) - SELECTEDVALUE('Table'[Overdue])Debtor Turnover ratio = SELECTEDVALUE('Table'[Overdue])/SELECTEDVALUE('Table'[Total Debtors])*SELECTEDVALUE('Table'[Total Debtors])
Final output
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi,
Write these measures
TD = sum(Debtors[Value])
OD = sum(overdue[Value])
S = sum(Sales[Value])
Debtor turnover = divide([S],[TD])*[OD]
Hope this helps.
Hi @Anonymous ,
Based on your description, there are two 20s in your data and it is impossible to determine which one was used for the final result. You can use selectedvalue to select the data in the table. Here is a simple example
Create mesures
Not overdue = SELECTEDVALUE('Table'[Total Debtors]) - SELECTEDVALUE('Table'[Overdue])Debtor Turnover ratio = SELECTEDVALUE('Table'[Overdue])/SELECTEDVALUE('Table'[Total Debtors])*SELECTEDVALUE('Table'[Total Debtors])
Final output
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 200 | |
| 125 | |
| 102 | |
| 69 | |
| 53 |