Hi Community,
Wondering if someone has been able to manage counting unique customers for a metric dimensioned by customer & product.
We have an ARR Metric defined by Customer ID, Product and Month. I would like to have a count by month of the unique customers which have an ARR value. The standard approach using the formula below is effective in having total customer accounts but I am then unable to filter on the products available.
IF('Ending ARR'Rremove sum: 'Product Type'] <> 0 and ISDEFINED('Ending ARR'Rremove sum: 'Product Type']), 1 , blank)
I worked to try and resolve this issue by leveraging the below formula which does allow me to filter on products and not double count total logos but when filtering on a single product the number becomes understated. Exec filtering on a product that is part of a set>1 would yield 0.5 or 0.33 vs 1
Switch(
IF('Ending ARR' <> 0 and ISDEFINED('Ending ARR'), 1 , blank)nremove sum: 'Product Type'],
1,1,
2,0.5,
3, 1/3)*IF('Ending ARR' <> 0 and ISDEFINED('Ending ARR'), 1 , blank)
Overall the goal is to have my data operate like formula #1 but still maintain the ability to filter(page select) on product type and not double count the number of logos.