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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
What is the code for these. I want to have.
1. Variance/ending balance. between Total delivered vs Total Sales 2. Percentage %
โThank you so much.๐๐ป
Solved! Go to Solution.
Hi @JanCen ,
Please try below steps:
1. below is my test table
Table:
2. create measure with below dax formula
Variance =
VAR cur_del =
SELECTEDVALUE ( 'Table'[Total Delivered] )
VAR cur_sale =
SELECTEDVALUE ( 'Table'[Total Sales] )
RETURN
cur_del - cur_sale
% Percent =
VAR _sal =
SELECTEDVALUE ( 'Table'[Total Sales] )
VAR _del =
SELECTEDVALUE ( 'Table'[Total Delivered] )
RETURN
FORMAT ( DIVIDE ( _sal, _del ), "Percent" )
3. add a table visual with fields and measure
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @JanCen ,
Please try below steps:
1. below is my test table
Table:
2. create measure with below dax formula
Variance =
VAR cur_del =
SELECTEDVALUE ( 'Table'[Total Delivered] )
VAR cur_sale =
SELECTEDVALUE ( 'Table'[Total Sales] )
RETURN
cur_del - cur_sale
% Percent =
VAR _sal =
SELECTEDVALUE ( 'Table'[Total Sales] )
VAR _del =
SELECTEDVALUE ( 'Table'[Total Delivered] )
RETURN
FORMAT ( DIVIDE ( _sal, _del ), "Percent" )
3. add a table visual with fields and measure
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Fabric update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!