Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have the following logic to calculate
Lost Customer - hasn't bought anything the last two years
New Customer - bought something this year, but nothing the last two years
Total Customers - everyone who has bought something this year
i have attached my model to this post.
i worked out how to calculate New Customer , however am really battling with the other two lost customer and Total customer.
any help is greatly appreciated.
Best,
Brad
Hi,
Please find attached file for solution. Calculated Total and Lost customer in script.
Hope this helps you.
Regards,
Jagan.
Try this =if(Count(Year(Year) = 2013),sum(amt)) I hope it helps!
Hi,
Please find attached file for solution. Calculated Total and Lost customer in script.
Hope this helps you.
Regards,
Jagan.
Total Customers can be done by :
Count(DISTINCT {<Year={2013}>} customer)
Hi,
New customer can be done by :
= count({<Year=-{2012,2011}>} distinct customer)
Total customer :
= count (distinct customer)
Lost customer:
= count({<Year=-{2012,2013}>} distinct customer)