Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI,
I created a variable in the script using LET & some'peek' functions, which gave the value (2012,2,3)
i.e. LET MyVar=peek xxx
As a result.. MyVar=2012,2,3
I am now trying to create a 2nd variable date using the 'makeweekdate' function on the above , so it will evaluate 2012,2,3 to give me an actual date for Year 2012, Week 2, Day 3..
i.e. LET MyDate=makeweekdate(MyVar);
but it really doesn't like this. Does anyone have any ideas please on correcting this or achieving the same thing ?
Thanks in advance
Bob
Try
LET MyDate=makeweekdate($(MyVar));
Thank you so much !! 😉