cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
krishnanvs
Frequent Visitor

DAX Help for comma separated values

Hi All,

 

I have two tables as below. I do not want to create a relationship between them.

Table 1:

CountryValue
India10
Japan20
S Africa30
Brazil40

 

Table 2:

PlaceCountry
AsiaIndia, Japan
AfricaS Africa
AmericaBrazil

 

Table 2 has country mapped to places. For Asia, India and Japan has been mapped with a comma seperator. Now I need to use a DAX measure to calculate sum of Value (Table 1) based on the places. The result should be as follows:

 

PlaceValue
Asia30
Africa30
America40

 

I tried to create a measure like below but couldnt find an answer. Please help in creating a DAX measure for this.

krishnanvs_0-1672047709423.png

 

1 ACCEPTED SOLUTION
FreemanZ
Community Champion
Community Champion

hi @krishnanvs 

 

As amitchandak has suggested, in occasions like this, it is always advisible to split the column to rows in Power Query.  

If your data is not big and you insist to do with DAX, you would try to

1) create a measure like this:

 

ValueSum = 
VAR _country = MAX(Table2[Country])
RETURN
CALCULATE(
    SUM(Table1[Value]),
    FILTER(
        ALL(Table1),
        CONTAINSSTRING(_country, Table1[Country])    
    )
)

 

2) plot the measure and the place column as a Table Visual.

 

I tried and it worked like this:

FreemanZ_0-1672050133084.png

 

View solution in original post

5 REPLIES 5
Mahesh0016
Solution Sage
Solution Sage

Mahesh0016_0-1672053359445.png

 

@krishnanvs If this post helps, please consider accept as solution to help other members find it more quickly.

BIHelper
Frequent Visitor

@krishnanvs -You have written the DAX Little bit correct you just need to do correction in that is this:- 

Sum =
Var getPlace=SELECTEDVALUE('Table 2'[Place])
Var getCountry=CONCATENATEX(VALUES('Table 2'[Country]),'Table 2'[Country],",")
Var getValue=CALCULATE(SUM('Table 1'[Value]),CONTAINSSTRING(getCountry,'Table 1'[Country]))
return
getValue
then you can achive your goal i tried this one.please refer the screenshot below
BIHelper_1-1672051755460.png

Mark it as a solution if it meets your requirement
Thank You!

Jihwan_Kim
Super User
Super User

Hi,

Please check the below picture and the attached pbix file.

 

Jihwan_Kim_0-1672051068500.png

 

 

Value measure: =
SUMX (
    DISTINCT ( 'Table 2'[Place] ),
    CALCULATE (
        SUMX (
            FILTER (
                GENERATE (
                    'Table 1',
                    ADDCOLUMNS (
                        ADDCOLUMNS ( 'Table 2', "@path", SUBSTITUTE ( 'Table 2'[Country], ", ", "|" ) ),
                        "@pathcontains", PATHCONTAINS ( [@path], 'Table 1'[Country] )
                    )
                ),
                [@pathcontains] = TRUE ()
                    && 'Table 2'[Place] = MAX ( 'Table 2'[Place] )
            ),
            'Table 1'[Value]
        )
    )
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


FreemanZ
Community Champion
Community Champion

hi @krishnanvs 

 

As amitchandak has suggested, in occasions like this, it is always advisible to split the column to rows in Power Query.  

If your data is not big and you insist to do with DAX, you would try to

1) create a measure like this:

 

ValueSum = 
VAR _country = MAX(Table2[Country])
RETURN
CALCULATE(
    SUM(Table1[Value]),
    FILTER(
        ALL(Table1),
        CONTAINSSTRING(_country, Table1[Country])    
    )
)

 

2) plot the measure and the place column as a Table Visual.

 

I tried and it worked like this:

FreemanZ_0-1672050133084.png

 

amitchandak
Super User
Super User

@krishnanvs , In table 2, use split by delimiters into rows and join with the first table

https://www.tutorialgateway.org/how-to-split-columns-in-power-bi/

Power Query Split Column , Split Column By Delimiter: https://youtu.be/FyO9Vmhcfag

 

 

 

refer if needed

Power BI- Text Part slicer to filter/search text - https://youtu.be/MKKWeOqFG4c

 



!! Microsoft Fabric !!
Microsoft Power BI Learning Resources, 2023 !!
Learn Power BI - Full Course with Dec-2022, with Window, Index, Offset, 100+ Topics !!
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !! Proud to be a Super User! !!

Helpful resources

Announcements
May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Submit your Data Story

Data Stories Gallery

Share your Data Story with the Community in the Data Stories Gallery.