Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
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]
)
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 64 | |
| 45 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 119 | |
| 114 | |
| 38 | |
| 36 | |
| 27 |