Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.
Hello Everybody, how are you?
ı have question about writing a row context dax in a ıf clause .
ı want to wrıte this query(*1) ınsıde of this query(*2). how to do that do u think?
*1:
IF A[X]="H"
THEN A[Y]*A[Z]*(-1)
ELSE IF A[X]="S"
THEN A[Y]*A[Z]
ELSE 0
-- A= TABLE NAME. X,Y,Z COLUMN NAME.
NOTE: I TRYED SWITCH FX BUT IT DOESNT WORKED.
*2:
Hello @Trist
You can try this
Measure 1 =
IF (
ISBLANK ( [Day] ),
BLANK (),
IF ( A[X] = "H", A[Y] * A[Z] * ( -1 ), IF ( A[X,] = "S", A[Y] * A[Z], 0 ) )
)
SWITCH will work. You shouldn't name your measure VALUES - that is a function in DAX. Call it something else.
New Measure =
IF(
ISBLANK( [Day] ),
BLANK(),
SWITCH(
TRUE(),
A[X] = "H",
A[Y] * A[Z] * ( -1 ),
A[X,] = "S",
A[Y] * A[Z],
0
)
)
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingJoin the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
6 | |
3 | |
3 | |
3 |
User | Count |
---|---|
11 | |
9 | |
8 | |
8 | |
7 |