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?