Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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 
 
					
				
				
			
		
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
 
            | User | Count | 
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | 
| User | Count | 
|---|---|
| 23 | |
| 14 | |
| 11 | |
| 10 | |
| 9 |