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!View all the Fabric Data Days sessions on demand. View schedule
Hi, quite new to Power BI and still have that excel mentality. Am trying to create a calculated column "CB", is there any workaround available that can get values just like column CB? Kind thanks.
Solved! Go to Solution.
Hi @Anonymous
In Power BI, it is not able to refer to itself when creating a calculated column. We need to convert it to calculating some kind of cumulative sum instead if possible.
You can create other three columns with below code. However, I cannot figure out how to calculate CB with DAX.
Amount(USD) = 'Table'[Price]*'Table'[Units]Buy/Sell = IF('Table'[Units]>0,"Buy","Sell")Running today = SUMX(FILTER('Table','Table'[DealingDate]<=EARLIER('Table'[DealingDate])),'Table'[Units])
Best Regards,
Community Support Team _ Jing
Hi @Anonymous
In Power BI, it is not able to refer to itself when creating a calculated column. We need to convert it to calculating some kind of cumulative sum instead if possible.
You can create other three columns with below code. However, I cannot figure out how to calculate CB with DAX.
Amount(USD) = 'Table'[Price]*'Table'[Units]Buy/Sell = IF('Table'[Units]>0,"Buy","Sell")Running today = SUMX(FILTER('Table','Table'[DealingDate]<=EARLIER('Table'[DealingDate])),'Table'[Units])
Best Regards,
Community Support Team _ Jing
Check out the November 2025 Power BI 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!