Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
I have Year,Sales fields, Year field like
Year
2010
2011
2012
2013
2014
2015
2016
but i want to calculate sales between years(2011-2015) by using set analysis.
How Can i write the Expression.
Regards,
Mahesh
sum({<Year={'>=$(Vmin)<=$(Vmax)'}>}Sales)
sum({<Year={'>=2011<=2015'}>}Sales)
Hi Bro,
Thanks Its working.
But I Have two Variables
Vmax=Max(Year)
Vmin=Min(Year)
How can i use this
Instead of hard coding year you can use variables like this way,sum({<Year={'<=$(Vmax)>=$(Vmin)'}>}sales)
sum({<Year={'>=$(Vmin)<=$(Vmax)'}>}Sales)
Hi Vijeta,
Thanks its working
I have one more doubt Where can i use YearEnd().
Regards
Hi Thanks Bro,
Its working Perfectly.
I have one more doubt Where can i use YearEnd().
Regards
Somewhere were you need to calculate the last day (and time) of the year of a date. See the help file for more information.
Hi,
Thanks Bro,
Regards
Mahesh