Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have 2 fields for selection : Year and Period.
For example, if I select April 2022, I'd like to sum the amount of all years up to April 2022.
How can I just do that, please?
Thank you.
try this to ignore the Year filter you've set.
SUM({<Year=, MonthYear= {"<= $(=max(MonthYear))"}>} Amount)
sum({<Year={"=Year<=Max(Year)"}>} Amount)
No.., It's display the sum over 2022 and not min(year) to 2022
If I use
SUM({<Year= {"<= $(=max(Year))"}>} Amount)
It's OK but I display all 2022 and not until my selected period (April 2022)
Assuming you have a MonthYear Field in your master calendar
SUM({<MonthYear= {"<= $(=max(MonthYear))"}>} Amount)
Yes, I have this field... I tried but it doesn’t work because I select the field Year... and if I select 2022 it'ill take me MonthYear for 2022... : 202201...202204 but not 2021... etc
try this to ignore the Year filter you've set.
SUM({<Year=, MonthYear= {"<= $(=max(MonthYear))"}>} Amount)
Perfect 😊.
Thank you very much !
you're welcome got there in the end 🙂