The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi All ,
I have merged two tables Salesboost where I am comparing GUID from both the tables.that is achieved from below DAX query.
Now I need to compare GUID along with country from two tables from the second query but getting error like "Multiple columns cannot be converted to a scalar value." any help?
Q1:
SalesBoost1&2 = IF(SalesBoost[Account: GUID]=SalesBoost[SalesBoost2.Customer GUID],"1&2",
IF(ISBLANK(SalesBoost[Account: GUID]),"2",
IF(ISBLANK(SalesBoost[SalesBoost2.Customer GUID]),"1")))
Q2:
CC_GUID_1 =
var SB = CONCATENATE(SalesBoost[Account: GUID],SalesBoost[Country])
VAR SB1 = CONCATENATE(SalesBoost[SalesBoost2.Customer GUID],SalesBoost[SalesBoost2.Country])
return
IF(SB=SB1,"1&2",
IF(ISBLANK(SB),"2","1"))
Not very clear to understand unless you share sample Data.
Follow the below article on the error.
Also, try using the SEARCH OR FIND Function.
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!!
User | Count |
---|---|
15 | |
13 | |
8 | |
6 | |
5 |
User | Count |
---|---|
24 | |
20 | |
12 | |
9 | |
7 |