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
Hello Community,
I need help in writing a DAX for retrieving a value from multiple column based on condition.
For example from column "Name" i need to select only Alice and display the sum of "Salary" and "Bonus" in column "Total"
Thanks in advance,
Saurav
Solved! Go to Solution.
@Novice100 , New measure
= sum(Table[Salary]) + Sum(Table[Bonus])
If you need you column
Sumx(filter(Table, [Name] + earlier([Name]) ) , [Salary] +[Bonus])
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new column.
Total CC =
VAR _condition = Data[Name] = "Alice"
RETURN
( Data[Salary] + Data[Bonus] )
* DIVIDE ( _condition, _condition )
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new column.
Total CC =
VAR _condition = Data[Name] = "Alice"
RETURN
( Data[Salary] + Data[Bonus] )
* DIVIDE ( _condition, _condition )
@Novice100 , New measure
= sum(Table[Salary]) + Sum(Table[Bonus])
If you need you column
Sumx(filter(Table, [Name] + earlier([Name]) ) , [Salary] +[Bonus])
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 |
|---|---|
| 22 | |
| 12 | |
| 10 | |
| 10 | |
| 9 |