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.
I have data like this. I would like to create a new column (Collection_Ratio) calculating the Collection by using this formula:
1-(End/Beginning).
This is the result that I want to have:
How can I achieve this? Please don't mind if this is a simple question. I am new to PowerBI. Thanks.
Solved! Go to Solution.
Create a measure, add Period on a table visual and this measure. Replace table with your table name
Collection Ratio=
DIVIDE (
CALCULATE ( SUM ( table[collection] ), table[data] = "End" ),
CALCULATE ( SUM ( table[collection] ), table[data] = "Beginning" )
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Create a measure, add Period on a table visual and this measure. Replace table with your table name
Collection Ratio=
DIVIDE (
CALCULATE ( SUM ( table[collection] ), table[data] = "End" ),
CALCULATE ( SUM ( table[collection] ), table[data] = "Beginning" )
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
12 | |
11 | |
9 | |
9 | |
8 |