What is wrong with the following:
Day>the_day
Month>the_month
Year>the_year
let>date=the_day+"-"+the_month+"-"+the_year
"date" is not created.
it should contain
2006-10-12 or as the date maybe.
Let Problem
Moderators: Dorian (MJT support), JRL
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
Just do this:
Let>date=%the_day%-%the_month%-%the_year%
Or if you prefer the traditional way do:
Let>date={%the_day%+"-"+%the_month%+"-"+%the_year%}
Let>date=%the_day%-%the_month%-%the_year%
Or if you prefer the traditional way do:
Let>date={%the_day%+"-"+%the_month%+"-"+%the_year%}
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
No, because that's not how ConCat works. ConCat concatinates two variables and requires a comma separating them.
ConCat>string1,string2
It is largely superseded by the ability to embed variables in % symbols or use complex expressions. But is there for backwards compatibility reasons.
ConCat>string1,string2
It is largely superseded by the ability to embed variables in % symbols or use complex expressions. But is there for backwards compatibility reasons.
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?