Not applicable
2013-05-16
06:58 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
LET variable in edit script
Hello,
A minor technical question.
How come im not allowed to do this in my edit script:
LET vCurrentMonthToDate ='>=$(vMonthStart1) <=$(vDateToday);
But if i make it in variable overview - im allowed!
971 Views
1 Solution
Accepted Solutions
sushil353
Master II
2013-05-16
07:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try this:
LET vCurrentMonthToDate ='>=$(vMonthStart1) <=$(vDateToday)';
in above a quote is missing
701 Views
4 Replies
sushil353
Master II
2013-05-16
07:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try this:
LET vCurrentMonthToDate ='>=$(vMonthStart1) <=$(vDateToday)';
in above a quote is missing
702 Views
kumarnatarajan
Partner - Specialist
2013-05-16
07:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Let key use for calculation
I Think you want to string format. So use below mentioned Syntex:
SET vCurrentMonthToDate ='>=$(vMonthStart1) <=$(vDateToday)';
Not applicable
2013-05-16
07:15 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have ofcause declared what montstart and vdatetoday is I just didnt wrote it but thanks
701 Views
Not applicable
2013-05-16
07:17 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks, im blind!!
701 Views