Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello!
I need to include in a analisys set, a variable range running from 2010 until the term is applied (Not today ())
That is, if I make a calculation for 2013 that would range from 2010 to 2013 and if it did in 2016 would range from 2010 to 2016
count ({<SET ANALISYS>} if (Reactivation = 'YES', NumeroDeAfiliado))
Thank you very much!!
count ({<YEAR = {">=2010&<=$(vYearSelection)"}>} if (Reactivation = 'YES', NumeroDeAfiliado))
where variable
vYearSelection = getfieldselection(YEARFIELD)
If you make calculation? How do you make calculations here? Do you mean make selection in year field?
May be this:
Count({<Year = {'>=2010<=$(=Max(Year))'}, Reactivation = {'YES'}>} NumeroDeAfiliado)
count ({<YEAR = {">=2010&<=$(vYearSelection)"}>} if (Reactivation = 'YES', NumeroDeAfiliado))
where variable
vYearSelection = getfieldselection(YEARFIELD)
hi! Thank you Vineeth!
As I create "vYearSelection" variable in the script?
don`t take that as a function.
You want to create it in script?
Yes, just the variable 'vYearSelection'
Then how will this be dynamic? I am missing something here?
What did you mean here:
"if I make a calculation for 2013 that would range from 2010 to 2013 and if it did in 2016 would range from 2010 to 2016"
SET vYearSelection = getfieldselections(YEARFIELD);