Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there any better way of writing the below set expression?
Sum({<Year={'2017'},Quarter={'Q4'}>}InsideSales)+Sum({<Year={'2017'},Quarter={'Q4'}>}WonSales)+Sum({<Year={'2017'},Quarter={'Q4'}>}LikelySales)+Sum({<Year={'2017'},Quarter={'Q4'}>}OutsideSales)
May be like:
Sum({<Year={'2017'},Quarter={'Q4'}>} Rangesum(InsideSales,WonSales,OutsideSales))
May be like:
Sum({<Year={'2017'},Quarter={'Q4'}>} Rangesum(InsideSales,WonSales,OutsideSales))
Not sure how your model looks like and this could be important, but maybe
=Sum({<Year={'2017'},Quarter={'Q4'}>} RangeSum(InsideSales,WonSales,LikelySales,OutsideSales))
Thank you.It is working perfectly.