Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Good day,
My data:
Location | Employee | YN |
Wellington | Jon | Y |
Wellington | Kevin | N |
Wellington | Oisin | Y |
Wellington | Isaac | Y |
Wellington | Pat | Y |
New York | Jon | N |
New York | Kevin | Y |
New York | Oisin | Y |
New York | Isaac | N |
Cairo | Jon | Y |
Cairo | Kevin | Y |
Cairo | Oisin | N |
Cairo | Isaac | Y |
Cairo | Pat | N |
Cairo | Deb | Y |
Tokyo | Isaac | Y |
Tokyo | Pat | N |
Tokyo | Deb | Y |
From this data, I created a measure that count "Y" for each employee:
Count Yes = COUNTROWS(FILTER('Table','Table'[YN]="Y"))
I put them in a table visual:
From this table I can see how many occurence of "Count Yes". Looks something like this:
From this, I want to plot a graph like this:
For this graph, I want to able to use the slicer where the columns count will change depends on which 'Location'(s) I picked.
Also, I need this chart to be dynamic as I will add data in the future. The max "Count Yes" is 3 now, but it may be 4 for the next data I add in.
My attempt:
Because the x-axis depends on the maximun count of the [Count Yes] measure, I created a measure to count the maximum:
Count Yes max per Employee =
MAXX(KEEPFILTERS(VALUES('Table'[Employee])), CALCULATE([Count Yes]))
From here, I created another table to generate the range of x-values for the column chart:
Table 2 = GENERATESERIES(1,[Count Yes max per Employee],1)
From here I got stuck because I don't know how to fill another column with this:
I understand there are multiple ways of doing this. I am open to any solutions. Here is my file.
Thank you all in advance.
Solved! Go to Solution.
@Irisohyama6 , You need employee count
Emp Count = Countx(filter(VALUES('Table'[Employee]), [Count Yes] = max(Table2[Value])),[Employee] )
@Irisohyama6 , a new measure and values from Table 2 should be used in visual
Sumx(filter(VALUES('Table'[Employee]), [Count Yes] = max(Table2[Value])),[Count Yes] )
Dynamic Segmentation Bucketing Binning
https://community.powerbi.com/t5/Quick-Measures-Gallery/Dynamic-Segmentation-Bucketing-Binning/m-p/1...
Dynamic Segmentation, Bucketing or Binning: https://youtu.be/CuczXPj0N-k
Hi @amitchandak ,
Thanks for the swift reply.
I created a measure given by you. Somehow I didn't get the result.
@Irisohyama6 , You need employee count
Emp Count = Countx(filter(VALUES('Table'[Employee]), [Count Yes] = max(Table2[Value])),[Employee] )
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.