Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi All,
New to the forum and Power Bi. I am currently trying to figure out how to classify various codes to Products in my query. The trick is that some codes are utilized expressly for a given product while for others variations are used. A nested IF may be a possibility, but I am currently trying to use SWITCH in conjunction with "Contains" for the cases where a variation of the code is being used. Here is an excerpt on how i currently have the DAX formula set up:
SWITCH(TRUE(),
'Code Load'[Billing ID]="ESEAT3", "Seats",
'Code Load'[Billing ID]Contains "EECI", "Superior Svc"
I am currently getting an error on synatax for "Contains". Any insight would be appreciated. Thanks all.
Solved! Go to Solution.
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
CONTAINSSTRING function (DAX) - DAX | Microsoft Learn
Expected result CC =
SWITCH (
TRUE (),
'Code Load'[Billing ID] = "ESEAT3", "Seats",
CONTAINSSTRING ( 'Code Load'[Billing ID], "EECI" ), "Superior Svc"
)
Disregard my earlier send re useing CONTAINS in a nested statement. Your solution works PERFECTLY. Thanks for the quick response!!!
Disregard my earlier send re useing CONTAINS in a nested statement. Your solution works PERFECTLY. Thanks for the quick response!!!
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
CONTAINSSTRING function (DAX) - DAX | Microsoft Learn
Expected result CC =
SWITCH (
TRUE (),
'Code Load'[Billing ID] = "ESEAT3", "Seats",
CONTAINSSTRING ( 'Code Load'[Billing ID], "EECI" ), "Superior Svc"
)
This looks very good. Question, how do i next the CONTAINSSTRING to utilize with multiple codes? Thanks.
User | Count |
---|---|
13 | |
10 | |
8 | |
7 | |
5 |
User | Count |
---|---|
24 | |
16 | |
15 | |
10 | |
7 |