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 moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
Hi @Gwen
You can create new table
NewTable =
DISTINCT (
SELECTCOLUMNS (
People,
"ID", People[ID],
"Name", People[Name],
"Rank", People[Rank]
)
)
@Gwen yes you can
NewTable =
FILTER (
DISTINCT (
SELECTCOLUMNS (
People,
"ID", People[ID],
"Name", People[Name],
"Rank", People[Rank]
)
),
[ID] <> BLANK ()
)
cool thank you. have a good day
So effective... thank you !
Hi @Gwen
You can create new table
NewTable =
DISTINCT (
SELECTCOLUMNS (
People,
"ID", People[ID],
"Name", People[Name],
"Rank", People[Rank]
)
)
Can I add a filter? For example I would like to filter the "empty" IDs. Thank you
@Gwen yes you can
NewTable =
FILTER (
DISTINCT (
SELECTCOLUMNS (
People,
"ID", People[ID],
"Name", People[Name],
"Rank", People[Rank]
)
),
[ID] <> BLANK ()
)
User | Count |
---|---|
25 | |
21 | |
20 | |
13 | |
13 |
User | Count |
---|---|
40 | |
28 | |
27 | |
23 | |
21 |