Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |