Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
hushijin059
Frequent Visitor

How to perform IN operation using single cell value

Hello, I have 2 tables that are not related.

Table 1 has data structure as below:

Product NameStateCity
AAATXHouston
BBBTXDallas
CCCMNMinneapolis
DDDWYCasper

 

Table 2 has data structure as below:

Product GroupsStateCityCount
XXXTX, MS, FLHouston, Dallas, Jackson, Miami2
YYYNY, MA, CTAlbany, Boston, Hartford0
ZZZMN, MO, MIMinneapolis, St. Louis, Detroit1

 

In Table 2, I want to add a calculated column that can count how many rows of data in Table 1 that has State column data contained in Table 2 State column and City column data contained in City column in Table 2. I'm expecting result as shown in the Count column.

 

I'm trying to use the IN operator 

Calculate(Count(Table1[Product Name]), Table1[State] IN {EARLIER(Table2[State])}, Table1[City] IN {EARLIER(Table2[City])})

But it returns an error on EARILIER function. I also tried to use LOOKUPVALUE instead of EARLIER to look up current row value in Table 2 state and city column, but it won't recognize the result as a list even if I put a "{}" around it. Also tried to create a temp table that only return a single row of that table by matching product ID, then use VALUES to extract the state column from the temp table, but it returns an error saying the temp table is not recognized. 

 

Any help is appreciated!

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@hushijin059 add a new column in Table 2 using the following expression,

 

Count Col = 
VAR __City = Table2[City]
VAR __State = Table2[State]
RETURN
CALCULATE (
    COUNTROWS ( 'Table1' ),
    CONTAINSSTRING ( __City, 'Table1'[City] ),
    CONTAINSSTRING ( __State, 'Table1'[State] )
) + 0

 

 

Follow us on LinkedIn and YouTube.gif to our YouTube channel

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

1 REPLY 1
parry2k
Super User
Super User

@hushijin059 add a new column in Table 2 using the following expression,

 

Count Col = 
VAR __City = Table2[City]
VAR __State = Table2[State]
RETURN
CALCULATE (
    COUNTROWS ( 'Table1' ),
    CONTAINSSTRING ( __City, 'Table1'[City] ),
    CONTAINSSTRING ( __State, 'Table1'[State] )
) + 0

 

 

Follow us on LinkedIn and YouTube.gif to our YouTube channel

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop shop for Power BI-related projects/training/consultancy.

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.