Forum Discussion
Newbie22
Resolver I
3 years agoLookup Distinct Admin Names to a Blank table
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 ...
- 3 years ago
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.
- 3 years ago
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
mangaus1111
Solution Sage
3 years agoHi 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.
- Newbie223 years ago
Resolver I
Thank you so much for making my work easier 😭