Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi Everyone,
How do I lookup to a blank table in PowerBI?
I have 3 tables below.
1. Blank Table
2. Case Table
3. Task Table
CASE Table
TASK Table
I want to get all Admin Names into one single column and put it in the "Blank table" but case number and task number are different. How would I do that?
This should how it looks like:
Admin Name
Michael John
Chris Kyle
Kelly Mae
Jessica Jones
Daniel Thomas
Solved! Go to Solution.
Hi @Newbie22 ,
try this
Table = DISTINCT(
UNION(
SELECTCOLUMNS('Case',"Name",'Case'[Admin Name]),
SELECTCOLUMNS('Task',"Name",'Task'[Admin Name])
)
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello
Try to crete this table :
Blank table =
var _temp =
UNION(
SUMMARIZE('Case','Case'[Admin Name]),
SUMMARIZE(Task,Task[Admin Name])
)
return
DISTINCT(_temp)
Best regards
Bruno Costa | Continued Contributor
Did I help you to answer your question? Accepted my post as a solution! Appreciate your Kudos!! 👍
Take a look at the blog: PBI Portugal
Best regards
Bruno Costa | Super User
Did I help you to answer your question? Accepted my post as a solution! Appreciate your Kudos!!
Take a look at the blog: PBI Portugal
@Newbie22 Using power Query you can append CASE Table and TASK Table data into a Blank table.
If you do not need case number field then you can remove that and remove duplicate from admin name field
Hello
Try to crete this table :
Blank table =
var _temp =
UNION(
SUMMARIZE('Case','Case'[Admin Name]),
SUMMARIZE(Task,Task[Admin Name])
)
return
DISTINCT(_temp)
Best regards
Bruno Costa | Continued Contributor
Did I help you to answer your question? Accepted my post as a solution! Appreciate your Kudos!! 👍
Take a look at the blog: PBI Portugal
Best regards
Bruno Costa | Super User
Did I help you to answer your question? Accepted my post as a solution! Appreciate your Kudos!!
Take a look at the blog: PBI Portugal
Hi @Newbie22 ,
try this
Table = DISTINCT(
UNION(
SELECTCOLUMNS('Case',"Name",'Case'[Admin Name]),
SELECTCOLUMNS('Task',"Name",'Task'[Admin Name])
)
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you so much for making my work easier 😭
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
90 | |
87 | |
84 | |
68 | |
49 |
User | Count |
---|---|
131 | |
111 | |
96 | |
71 | |
67 |