Join 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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi,
If I want to create a measure like
Measure= TablenameA[columnname], tablenameB[Columnname] = null, ISBLANK (TablenameA[columnname])
what would be the correct syntax, I seem to get syntaxes wrong most of the time
basicly first table and column already filtered so I reuse that column first than I want to say if column two = null than TRUE if the value is blank; otherwise FALSE.
thanks
Solved! Go to Solution.
Maybe try something like IF(SELECTEDVALUE(tablename[columnname], 'x') = BLANK(), ....)
or
IF(ISBLANK(SELECTEDVALUE(tablename[columnname], 'x') ), ....)
Hi,
Try this
ISBLANK(tablename[columnname])
and
NOT(ISBLANK(tablename[columnname]))
Hope this helps.
any dax expert out there can help?
Hi,
Without seeing the data and the relationships, it is very difficult to offer a solution. Please share a dataset, describe the question and show the expected result.
@Ashish_Mathur ok let me change my question
how do I say tablename[columnname] is euqual null
and
tablename[columnname] is euqual is not null
thanks
Hi,
Try this
ISBLANK(tablename[columnname])
and
NOT(ISBLANK(tablename[columnname]))
Hope this helps.
Maybe try something like IF(SELECTEDVALUE(tablename[columnname], 'x') = BLANK(), ....)
or
IF(ISBLANK(SELECTEDVALUE(tablename[columnname], 'x') ), ....)
Vote for your favorite vizzies from the Power BI World Championship submissions!
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 |
|---|---|
| 63 | |
| 51 | |
| 41 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 122 | |
| 107 | |
| 47 | |
| 30 | |
| 24 |