Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm using this function to calculate the revenues for present year
=num(Sum({<[YEAR]={$(VYear)}>} Amount))
I would like to know the same but the year before, I put -1 in the variable but it doesn't work, anybody knows why?
=num(Sum({<[YEAR]={$(=(VYear)-1)}>} Amount))
Thank's for your help
Hi if you are using Master Calender than use following set equation
sum( {$<Year = {$(vLastYear)}>} Sales )
Hi,
Can you tell me what is there in VYear?
HI
Try like this
=Sum({<Year = {'$(=max(Year)-1)'}>}Sales) for maximum -1 year
=Sum({<Year = {'$(=max(Year))'}>}Sales) for maximum year
VYear is a variable: =(year)
Doesn't work Mayil...
Hi if you are using Master Calender than use following set equation
sum( {$<Year = {$(vLastYear)}>} Sales )
HI,
U can try this. Its working
( sum({<FinancialYear = {"$(=Max(FinancialYear))"} >}Sales) )
-
( sum({<FinancialYear = {"$(=Max(FinancialYear)-1)"} >}Sales) )
Regards,
Nirav Bhimani
Now it works!!! I load Master Calendar and now it works perfectly
thank you everyone!!!