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
NickProp28
Post Partisan
Post Partisan

take a long runtime for vLookup from another table

Dear Community,

 

I have 2 table. Table A have 2 column (ID and jobnumber)

Table B is the details of ID. I created a new column (Count Job) in table B  to count how many jobnumber inside the ID. 

DAX I used, 
Count Job = CALCULATE(DISTINCTCOUNT(TableA[JobNumber]),FILTER(TableA,TableA[ID]=Table[ID]))

Example (Table A)

NickProp28_0-1629860629481.png

 

Table B 

NickProp28_1-1629860649318.png

Since I have huge data, the runtime for this DAX is more than 3 hours. 
So would like to ask is any other way to get the same solution.

Thanks for your attention. Any help provided will be greatly appreciated.

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@NickProp28 , Duplicate Table A in Power Query and keep ID and JobNumber

Remove duplicates

Group By -> ID and JobNumber count  - https://docs.microsoft.com/en-us/power-query/group-by

 

Then merge this with table B

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

 

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@NickProp28 , Duplicate Table A in Power Query and keep ID and JobNumber

Remove duplicates

Group By -> ID and JobNumber count  - https://docs.microsoft.com/en-us/power-query/group-by

 

Then merge this with table B

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

 

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.

Top Solution Authors