I am having some issues getting the formula right to Distinct Count a column without counting the blank.
Distinct Count of Tech 2:=DISTINCTCOUNT([Tech])
-works but counts the blanks as 1 as well (there will not always be a blank)
Distinct Count of Tech 3:=CALCULATE([Distinct Count of Tech 2], not(isBLANK([Tech])))
-Semantic Error: The value for 'Tech' cannot be determined. Either 'Tech' doesn't exist, or there is no current row for a column named 'Tech'.
Distinct Count of Tech 5:=CALCULATE(DISTINCTCOUNT([Tech]),FILTER(NOT(ISBLANK([Tech]))))
-Semantic Error: Too few arguments were passed to the FILTER function. The minimum argument count for the function is 2.
Example of Column
Tech
2161
2161
2158
1703
2159
2159
1703
2161
2159
1703
1722
The first would tell me there are 6 unique techs working when there are only 5, because its counting the blank.
I am hoping I am just making a silly mistake and this can be done, and that what I learn from this can be applied to counts in other columns when wanting to only count a specific item.
Distinct Count of Tech 2:=DISTINCTCOUNT([Tech])
-works but counts the blanks as 1 as well (there will not always be a blank)
Distinct Count of Tech 3:=CALCULATE([Distinct Count of Tech 2], not(isBLANK([Tech])))
-Semantic Error: The value for 'Tech' cannot be determined. Either 'Tech' doesn't exist, or there is no current row for a column named 'Tech'.
Distinct Count of Tech 5:=CALCULATE(DISTINCTCOUNT([Tech]),FILTER(NOT(ISBLANK([Tech]))))
-Semantic Error: Too few arguments were passed to the FILTER function. The minimum argument count for the function is 2.
Example of Column
Tech
2161
2161
2158
1703
2159
2159
1703
2161
2159
1703
1722
The first would tell me there are 6 unique techs working when there are only 5, because its counting the blank.
I am hoping I am just making a silly mistake and this can be done, and that what I learn from this can be applied to counts in other columns when wanting to only count a specific item.