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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi -- I've searched and tried to find this, but can't seem to figure it out. Please help!
I am working trying to count categorical variables. I have a table that has a coulumn named Event Group. In it, it has a column called "name." I have figured out how to count the number of occurences of event A with the following:
Count of A =
@RJSuttlemyre , Try a measure like
Countrows(Summarize(Filter('DIM-Event Group','DIM-Event Group'[Name] = "A"),'DIM-Event Group'[Name]))
Thanks for the reply -- I really appreciate it.
I tried it and it compiles, but gives the answer of 1 in line chart or column chart, as well as a table.
Did I do something wrong?