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.
Hi Guys,
Need your help here!
So I have a table visual that looks like below. Sales Count is the output of a measure derived based on Customer ID.
I want to create another table visual that will look like below. Basically the distinct values of Sales Count from previous visual and Frequency is the number of occurences.
How can I achieve this? Any help will be greatly appreciated.
Solved! Go to Solution.
@murar , for the second visual, you have to create a measure and an independent/Disconnected Count table. You need Dynamic segmentation
Dynamic segmentation -Measure to Dimension conversion: https://youtu.be/gzY40NWJpWQ
Hi @murar ,
Please try below steps:
1. below is my test table
Table:
2. add a new column in Table
Sales Count =
VAR cur_id = [Customer ID]
VAR tmp =
FILTER ( 'Table', [Customer ID] = cur_id )
RETURN
SUMX ( tmp, [Sales] )
3. create a new table with below dax formula
Table 2 = VALUES('Table'[Sales Count])
4. create a measure with below dax formula
Frequency =
VAR _a =
SELECTEDVALUE ( 'Table 2'[Sales Count] )
VAR tmp =
FILTER ( 'Table', [Sales Count] = _a )
RETURN
CALCULATE ( DISTINCTCOUNT ( 'Table'[Customer ID] ), tmp )
5. add a table visual with measure and field
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I have a similar problem, but the measure output is a category and not a number. The category changes deppending on slicer selections:
I want to count the number of each category, and the percentage of each category of the total.
The examples below use numbers, not alphabetical descriptions.
How do I use alphanumeric buckets?
Thanks,
Craig
Hi @murar ,
Please try below steps:
1. below is my test table
Table:
2. add a new column in Table
Sales Count =
VAR cur_id = [Customer ID]
VAR tmp =
FILTER ( 'Table', [Customer ID] = cur_id )
RETURN
SUMX ( tmp, [Sales] )
3. create a new table with below dax formula
Table 2 = VALUES('Table'[Sales Count])
4. create a measure with below dax formula
Frequency =
VAR _a =
SELECTEDVALUE ( 'Table 2'[Sales Count] )
VAR tmp =
FILTER ( 'Table', [Sales Count] = _a )
RETURN
CALCULATE ( DISTINCTCOUNT ( 'Table'[Customer ID] ), tmp )
5. add a table visual with measure and field
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@murar , for the second visual, you have to create a measure and an independent/Disconnected Count table. You need Dynamic segmentation
Dynamic segmentation -Measure to Dimension conversion: https://youtu.be/gzY40NWJpWQ
Hi Amit,
This worked. Thank you so much for help!
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
63 | |
53 | |
39 | |
25 |
User | Count |
---|---|
85 | |
57 | |
45 | |
43 | |
38 |