IF statement in Measure, need help - Power BI
community.powerbi.com › t5 › DesktopApr 15, 2021 · In DAX, Measure is always sliced by current row context, it's not possible to use the current slicing row as condition in Measure. In your scenario, you can create a dummy measure for this conditon. Just create a measure like: Dummy = SUM(Table[car_id]) Then you can create a calculated measure like: Measure =IF([Dummy]=112,22,[Measure_Gauge])
Learn DAX basics in Power BI Desktop - Power BI
learn.microsoft.com › en-us › power-biMay 6, 2022 · This article is for users new to Power BI Desktop. It gives you a quick and easy introduction on how you can use Data Analysis Expressions (DAX) to solve a number of basic calculation and data analysis problems. We’ll go over some conceptual information, a series of tasks you can complete, and a knowledge check to test what you’ve learned.