Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a straight table (see screenshot).I'm trying to get the sum of rows of the Spend into a text object.
And the 1/2/3/4 Vendor(s) is Dimensions with extension below:
=if(aggr(Count(DISTINCT Vendor_Code), Material_Code)=1,
'1 Vendor',aggr(Count(DISTINCT Vendor_Code), Material_Code)&' Vendors')
Now when I sum the Spend of 1 Vendor into Text Object, the result is incorrect.
=sum(if(aggr(Count(DISTINCT Vendor_Code), Material_Code)=1,Delivery_Amount))
or try this extension is incorrect too:
=sum(aggr(if(aggr(Count(DISTINCT Vendor_Code), Material_Code)=1,Delivery_Amount), Material_Code))
I want to sum the Spend of the material_code has only one vendor_code:
Can anybody help me to correct the extension ?
Thank you
Ming
May be this
Sum({<Material_Code = {"=Count(DISTINCT Vendor_Code) = 1"}>}Delivery_Amount)
Try this?
=Sum(If(Aggr(Count({<Vendor_Code = {'1 Vendor'}>} DISTINCT Vendor_Code), Material_Code)=1,Delivery_Amount))
May be this
Sum({<Material_Code = {"=Count(DISTINCT Vendor_Code) = 1"}>}Delivery_Amount)
Hi, thanks for your response,
The '1 Vendor' is not the value of Vendor_code.
it Calculated with
=if(aggr(Count(DISTINCT Vendor_Code), Material_Code)=1,
'1 Vendor',aggr(Count(DISTINCT Vendor_Code), Material_Code)&' Vendors')
It's working well, Thank you!
Then, Sunny's reply make sense