Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi there,
I am trying to add a sum of three different dimensions measures.
Basically A+B+C
I am using this formula:
Sum(Aggr(sum([Bombardier CET not Done]), sum([Avanti CET not done]), sum ([TPE CET not Done])
))
But no joy! 😞
Can anyone assist?
Thanks all!
Jose
Hi @JoseGarcia
Try this expression
sum([Bombardier CET not Done]) + sum([Avanti CET not done]) + sum([TPE CET not Done])
Hi @JoseGarcia
Try this expression
sum([Bombardier CET not Done]) + sum([Avanti CET not done]) + sum([TPE CET not Done])
Brilliant! It worked!
Thanks a million!
Try this as well,
RangeSum(sum([Bombardier CET not Done]), sum([Avanti CET not done]), sum ([TPE CET not Done]))
Hi there,
your expression also worked!
Thanks a million! 🙂