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.
Please help im a new user used to excel language and DAX has me stumped.
Id like to create a new column where the values in the amount colum are positive or negative based on the result of the refund column.
So where Refund = True the value in the new column would be minus whats in the amount column
so 125.96 would become -125.96 because the refund is TRUE.
Thank you in advance for helping me with this.
Solved! Go to Solution.
Hi @T_Francis ,
Go to Power Query and Click on Add Column --> Custom Column
Type the above formula
if ([Refund]) then -[Amount] else [Amount])
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
Hi @T_Francis ,
Go to Power Query and Click on Add Column --> Custom Column
Type the above formula
if ([Refund]) then -[Amount] else [Amount])
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
User | Count |
---|---|
24 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |