The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
¿Cómo puedo convertir la siguiente medida SQL en DAX?
if [A]=[B] then 'TRUE'
ELSEIF [B]='All' then 'TRUE' END
Solved! Go to Solution.
Hola @armughan , usted puede conseguir esto por
IF([A] = [B],TRUE(),IF([B] = 'All',TRUE(),BLANK()))
Hay @armughan,
Si desea crear una nueva columna , puede usar el siguiente dax:
Column = IF('Table'[A]='Table'[B]||'Table'[B]="All",TRUE(),BLANK())
Y si desea crear una medida, puede probar el siguiente dax:
Measure = IF(MAX('Table'[A])=MAX('Table'[B])||MAX('Table'[B])="All",TRUE(),BLANK())
Final obtendrá :
Deseo que sea útil para usted!
Saludos
Lucien
Hola @armughan , usted puede conseguir esto por
IF([A] = [B],TRUE(),IF([B] = 'All',TRUE(),BLANK()))
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.