Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I want to be able to count within a table, the number of times a value appears within a column.
For example i have the data below with 5 employees. And a [Hierarchy Path] string column.
I want to be able to count the number of times the [Employee] appears within the Column, [Hierarchy path].
Employee | Hierarhy Path | Column String Count |
AA | EE | AA | 4 |
BB | EE | AA | BB | 1 |
CC | EE | AA | CC | 1 |
DD | EE | AA | DD | 1 |
EE | EE | 5 |
Solved! Go to Solution.
@Abawde1 ,
a new column
=
var _emp = [Employee]
return
countx(filter(Table, search(_emp, [Hierarhy Path],,0) >0) , [Employee])
Thank you amitchandak, works perfect
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
8 | |
6 |