Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts
I have the following expression:
resident job where Gesellschaft = 'DC' AND Jahr=2014 group by jobnr;
How can I insert the current year instead of hardcoding it?
Thank you for your help!
Jan
year(today()) will return the current year
where Gesellschaft = 'DC' AND Jahr=year(today())
group by jobnr;
year(today()) will return the current year
where Gesellschaft = 'DC' AND Jahr=year(today())
group by jobnr;
resident job where Gesellschaft = 'DC' AND Jahr=Year(today()) group by jobnr;
merci