Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need my graph to ALWAYS display the full year by month, irrespective of the month selected - where would I insert the {1} in the following expression?
sum({$<Type={'Budget'}>}Amount)
If it is only the month you want to disregard then you can skip the {1}, and instead pinpoint the month field like this:
sum({$<Month=, Type={'Budget'}>}Amount)
Replace the $ with a 1
sum({1<Type={'Budget'}>}Amount)
If it is only the month you want to disregard then you can skip the {1}, and instead pinpoint the month field like this:
sum({$<Month=, Type={'Budget'}>}Amount)