Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
i am trying to use set analysis of an equation, let me explain i have an equation which as follows
sum ([Total fresh quantity])-(sum((([Total fresh quantity]*[Rejection %])/100)+[Weight of clay]))
and i want to apply set analysis condition
{1<Supplier={'K1'}, Month={'December'}>}
this is how i write it
(sum( {1<Supplier={'K1'}, Month={'December'}>}[Total fresh quantity])-(sum((([Total fresh quantity]*[Rejection %])/100)+[Weight of clay])))
the output isn't correct can anyone advice
May be this:
Sum({1<Supplier={'K1'}, Month={'December'}>} [Total fresh quantity]) -
Sum({1<Supplier={'K1'}, Month={'December'}>} (([Total fresh quantity]*[Rejection %])/100)+[Weight of clay])
May be this:
Sum({1<Supplier={'K1'}, Month={'December'}>} [Total fresh quantity]) -
Sum({1<Supplier={'K1'}, Month={'December'}>} (([Total fresh quantity]*[Rejection %])/100)+[Weight of clay])
perfect thank you very much