The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi all,
I need to combine two columns into one column, and at the same time, sum their values up.
This is a bit weird, cant really find a solution online. Please let me know if I can clarify more. Thank you.
Solved! Go to Solution.
@Anonymous
You can use this calculated column
Column = CALCULATE ( SUM ( Table1[Fee_XXX] ) + SUM ( Table1[Fee_YYY] ), ALLEXCEPT ( Table1, Table1[User] ) )
@Anonymous
You can use this calculated column
Column = CALCULATE ( SUM ( Table1[Fee_XXX] ) + SUM ( Table1[Fee_YYY] ), ALLEXCEPT ( Table1, Table1[User] ) )
Thanks a lot Zubair, great solution