Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have created a custom column (StdSvcKey) which is concatentation of two other columns (Sell-to Customer No. & Standard Service Code).
Currently if the Standard Service Code has a null value, but the Sell-to Customer No. field is not blank, my new custom column shows the contents of the Sell-to Customer No. field. I need it to show as null if there is nothing in the Standard Service Code.
This is what I need it to look like:
But currently I'm getting this:
Solved! Go to Solution.
The below will handle nulls and ""
Column =
IF(
NOT( ISBLANK( 'Table'[Standard Service Code] ) || 'Table'[Standard Service Code] = "" ),
'Table'[Sell-to Customer No.] & 'Table'[Standard Service Code]
)
No sadly that didnt work. It still returns the value from the Sell-to Customer No. field. I want it to be null if the Standard Service Code field is null.
This is the DAX i used:
The below will handle nulls and ""
Column =
IF(
NOT( ISBLANK( 'Table'[Standard Service Code] ) || 'Table'[Standard Service Code] = "" ),
'Table'[Sell-to Customer No.] & 'Table'[Standard Service Code]
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.