Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have this two tables that I joined but the values are duplicated. How can I divide the value 8.26 for every IMEI that occurs in the example?
Thank you.
Hi Doru,
try
Sum(Value)/Count(DISTINCT TOTAL <Product> IMEI)
Regards,
Antonio
I don't think they are duplicated, the data looks good to me.
In your test table you might just want to exclude where len(IMEI) <1
e.g. if(len(IMEI)<1,0,IMEI/Value)
Hello Adam,
Thank you for your answer but the values are duplicated. For every IMEI the value should be 4.13(for this example).
Hi Doru,
try
Sum(Value)/Count(DISTINCT TOTAL <Product> IMEI)
Regards,
Antonio
Thank you Antonio