Forum Discussion
UK_User123456
Resolver I
7 years agoCount or distinct count
Hi Community, I have a column in my data that has a type of "text" but when I try to do a count or distinct count of the data, it just doesnt work. Can anyone help? The example is as follows:...
richbenmintz
Resident Rockstar
7 years ago
The following measures should give you the counts you are looking for
Count = CountRows('table')Distinct Count = DISTINCTCOUNT('table'[column])I hope this helps,
Richard