Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi All,
I have a field name = BRAND_SAP :-
I also have a field name = BRAND_5 :-
i Create a expression to combine above 2 field into 1 field :-
Solved! Go to Solution.
@admin11 Ok, try this:
BRAND_SAP_C =
IF(
'SALES'[BRAND_SAP] & " " & 'SALES'[BRAND_5] = " ",
"No Brand",
'SALES'[BRAND_SAP] & " " & 'SALES'[BRAND_5]
)
@admin11 , try this:
BRAND_SAP_C =
IF(
ISBLANK('SALES'[BRAND_SAP] & " " & 'SALES'[BRAND_5]),
"No Brand",
'SALES'[BRAND_SAP] & " " & 'SALES'[BRAND_5]
)
@Anonymous
Thank you for your fast reply. But your expression still not display "No Brand"
@admin11 Ok, try this:
BRAND_SAP_C =
IF(
'SALES'[BRAND_SAP] & " " & 'SALES'[BRAND_5] = " ",
"No Brand",
'SALES'[BRAND_SAP] & " " & 'SALES'[BRAND_5]
)
@Anonymous
Thank you very much for your help.
User | Count |
---|---|
84 | |
79 | |
71 | |
48 | |
43 |
User | Count |
---|---|
111 | |
54 | |
50 | |
40 | |
40 |