Hello - as explained already, the Approximate Count Distinct is the built-in way to get a distinct count of a dimension in Adobe workspace. However, Adobe Analytics does not have a built-in "exact" distinct count metric.
If you'd like to try your hand at few workarounds, then I suggest the following:
- Data Warehouse Export: If you need exact distinct counts, export your data to Adobe Data Warehouse and use Excel, SQL, or Python to calculate the distinct count manually
- Customer Attributes or Classifications: If you are tracking something like distinct users or orders, you could store those values as Customer Attributes or Classifications in Adobe Analytics and reference them separately.
- Adobe Data Feeds: If you have access to Adobe Data Feeds, you can process the raw hit-level data using BigQuery, Snowflake or any database and run an exact DISTINCT COUNT query there.
Good Luck!