I have a table with 2157 records, let's say with 3 columns (A,B,C) and I know that in column A there are 2154 different values.
Using Tableau Desktop (and its own fenctions) connected to BigQuery, I get these results:
- Count(A) --> 2157
- CountD(A) --> 2180 (more than Count!!!)
If i run the same calculations using queries in Big Query console, I get:
- Count --> 2157
- CountD --> 2154 (right)
How can this be possible?
By the way, if use a CSV file of the same table and I use it as datasource using Tableau Public (no Desktop), I get correct results as in Big Query.
Thanks in advance