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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Grewin
Frequent Visitor

Count how many times the ID in sheet A shows up in sheet B

I wanted to count how many times the ID in sheet A shows up in sheet B.

 

Sheet A:

Page TagId
A1259
B1221
C1223
D763
E1247
F1237
G1235

 

Sheet B:

Tag Ids
923, 815, 763, 1235
851, 1259
903, 899, 927, 935
915, 921, 815, 1223
1235
564, 737, 1259, 1223
943, 1197, 1247, 1125, 1123, 1195, 1235, 1237

 

 

Desired Output:

Page TagCount
A2
B0
C2
D1
E1
F1
G3

 

Thank you in advance.

1 ACCEPTED SOLUTION
v-cgao-msft
Community Support
Community Support

Hi @Grewin ,

 

My steps are:

1. In Power Query Eidtor -> Split column by delimiter -> select all column -> unpivot column

vcgaomsft_0-1666074563204.png

vcgaomsft_1-1666074733733.png

2. In Sheet A -> Merge queries -> aggregate

vcgaomsft_2-1666075430589.png

vcgaomsft_5-1666076572537.png

3. result:

vcgaomsft_6-1666076605715.png

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

View solution in original post

2 REPLIES 2
v-cgao-msft
Community Support
Community Support

Hi @Grewin ,

 

My steps are:

1. In Power Query Eidtor -> Split column by delimiter -> select all column -> unpivot column

vcgaomsft_0-1666074563204.png

vcgaomsft_1-1666074733733.png

2. In Sheet A -> Merge queries -> aggregate

vcgaomsft_2-1666075430589.png

vcgaomsft_5-1666076572537.png

3. result:

vcgaomsft_6-1666076605715.png

 

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

amitchandak
Super User
Super User

@Grewin , Split the column tag id in table two into rows

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

 

And group the table with count (if needed duplicate)

https://docs.microsoft.com/en-us/power-query/group-by

 

Then merge the two tables.

 : https://radacad.com/append-vs-merge-in-power-bi-and-power-query

 

or Also step 1

 

come to DAX and create a new column in Table 1

 

COuntx(filter(Table2, Table1[Tag id] = Table2[Tag_ids]) , Table2[Tag id])

 

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.