Forum Discussion
UK_User123456
7 years agoResolver I
Count 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
7 years agoResident Rockstar
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