Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I would like to have the sum that shows only values for the YearMonth that has maximum value. This YearMonth is generated by mastercalendar. I don't know what is wrong, but id doesn't work. if I take Max(YearMonth) separately it shows proper value i.e. 201609, but if it is in the formula shown below - it doesn't work.
sum(${<YearMonth=${Max(YearMonth)}>}Amount)
Maciek
Try With this,
Your expression should be like this,
Sum({<YearMonth={"$(=Max(YearMonth))"}>}Amount)
Hi,
you have written wrong expr try this,
sum({<YearMonth={$(=max(YearMonth))}>}Amount)
Regards,
Try With this,
Your expression should be like this,
Sum({<YearMonth={"$(=Max(YearMonth))"}>}Amount)
Both works fine thanks silambarasan1306 and pathiqvd.