Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 12 | |
| 10 | |
| 9 | |
| 7 | |
| 5 |