user13320137
user13320137

Reputation: 59

How to list values of a column based on another column in power bi measure/dax

I have two columns in a table

Ticket   ContactPerson
A         John
B         Unassigned
C         Harry
D         Unassigned
E         Unassigned

how can I get only tickets which has ContactPerson as "Unassigned" ?? Output should be tickets - B,D,E only and should not include the ContactPerson column which has values "Unassigned" as this is irrelevant for me. I can write Unassigned in Header itself no need to add extra column

I want to see this column in my visual

Tickets
B
D
E

And not this

Contact Person Tickets
Unassigned     B
Unassigned     D
Unassigned     E

Upvotes: 0

Views: 2045

Answers (1)

Daryl Wenman-Bateson
Daryl Wenman-Bateson

Reputation: 3964

To show just those rows that have an "Unassigned" attribute value, you should be able to just filter the visual in Power BI.

Filtering based on value

For example the left hand table has all values, the right hand table is filtered to just "Unassigned", but only showing those tickets relating to unassigned

Upvotes: 1

Related Questions