Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi, I have a calculated column in tableau like this:
Column1= if [A]<2 then [A]
elseif [A]>=4 then max([A],[B])
else [B]
END
How can I convert the same to DAX? Im having issues with max([A],[B]).
Thank you.
Solved! Go to Solution.
@Anonymous ,
Column1= Switch(True() ,
[A]<2 ,[A]
[A]>=4 , max([A],[B]) ,
[B]
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 84 | |
| 69 | |
| 38 | |
| 29 | |
| 27 |