Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
Figures of year 2009 must be compared with year 2008 and next year 2010 with 2009.
So I don't want to set a label with "2009" or "2008" but with the contents of a variable.
In the loadscript I have:
Let YearZ = year(date())
Let YearY = year(date())-1
Let YearX = year(date())-2
There must be a way to display (just one of) these variables in a label.
Who can point me to the documentation where this is explained?
Thank you in advance
Ton
Hi,
in the label you have to write
=$(YearZ)
you can also concatenate these Variables
=$(YearZ)&' vs. '&$(YearY)
or something like this.
have Fun with QV
Alex:)
Hi,
in the label you have to write
=$(YearZ)
you can also concatenate these Variables
=$(YearZ)&' vs. '&$(YearY)
or something like this.
have Fun with QV
Alex:)
Thank you for your helpfull reply.
It works great
Ton
Most things are easy but just the second time.