Hi All,
Need help in calculation-
In given below table i want to show customer who purchased in furniture and office supplies but not in technology.
Thanks
Aman
4 answers
Hi Aman,
Try this:
[Calcul 1] :
{ FIXED [Customer Name], [Category] : MIN(IF [Category] = 'Furniture' OR [Category] = 'Office Supplies' THEN 1 ELSE 3 END )}
[Calcul 2]:
IF { FIXED [Customer Name] : SUM([Calcul 1]) } = 2 THEN 'OK' ELSE 'NOT' END
You can change 'OK' and 'NOT' for TRUE and FALSE depending on your requirement.
Regards,
Vincent