Forum Discussion
AZL
7 years agoFrequent Visitor
Sum the resultant values from Distinctcount function.
Hey All, I deadly need your helps guys. Let's say I have the following table: I want firstly to distinct count the values in Col1 based on Col2 to get: A1>>>2 B1>>>1 C1>>>1...
AlB
7 years agoCommunity Champion
Hi AZL
How about a DISTINCTCOUNT on the concatenation of the columns you are interested in? For instance, in your first example with Col1 and Col2, you create an additional calculated column
Table1[NewColum]=Table1[Col] & Table1[Col2]
and then
DISTINCTCOUNT(Table1[NewColum])