The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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