Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'd like to create the measure below specific to a year, such as 2017. I'm not certain how to add this to my current formula that is pulling only customers that purchased 2 products together.
Sum({$<CustomerName = {"=Count(DISTINCT {<Product = {'1016', '1020'}>} Product) = 2"}>} Qty)
May be one of these
Sum({$<CustomerName = {"=Count(DISTINCT {<Product = {'1016', '1020'}, Year = {'2017'}>} Product) = 2"}, Year = {'2017'}>} Qty)
or this
Sum({$<CustomerName = {"=Count(DISTINCT {<Product = {'1016', '1020'}, Year = {'2017'}>} Product) = 2"}>} Qty)
May be one of these
Sum({$<CustomerName = {"=Count(DISTINCT {<Product = {'1016', '1020'}, Year = {'2017'}>} Product) = 2"}, Year = {'2017'}>} Qty)
or this
Sum({$<CustomerName = {"=Count(DISTINCT {<Product = {'1016', '1020'}, Year = {'2017'}>} Product) = 2"}>} Qty)
Thanks. That was easier than I thought!