Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hello
I am trying to create a visual baed off of one column with different values, here is a sample of that column:
| Opening applications... |
| Killing processes... |
| Opening applications... |
| Killing processes... |
| Opening applications... |
Thank you for the help in advance
Solved! Go to Solution.
@Anonymous What result are you looking for? If you want:
| Opening applications | 3 |
| Killing processes | 2 |
Then you just need to add that same column to the visual TWICE. Add it in the Rows or Axis, and then also add it to the Values and set the summarization to COUNT.
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
@Anonymous
Not clear what is your expected result.
If you want to show all rows, set the Value as Dont'summarize:
| Opening applications... | 1 |
| Killing processes... | 1 |
| Opening applications... | 1 |
| Killing processes... | 1 |
| Opening applications... | 1 |
OR you want aggreagated, set the value as (sum, count, average...etc.)
| Opening applications... | 3 |
| Killing processes... | 2 |
Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous What result are you looking for? If you want:
| Opening applications | 3 |
| Killing processes | 2 |
Then you just need to add that same column to the visual TWICE. Add it in the Rows or Axis, and then also add it to the Values and set the summarization to COUNT.
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
@Anonymous
You can set value as Don't summarize.
Proud to be a Super User!