Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

WeekDay() created as variable in script

Hey guys,

I’ve been playing around with WeekDay(now()) in my incremental loader script for qvds as we’re trying to perform full reloads every Sunday.

Previously I was using:

LET vDayOfWeek = WeekDay(now());

IF $(vDayOfWeek) = 'Sun' THEN

This returns false, however when I use:

IF WeekDay(now()) = 'Sun' THEN

And suddenly it works. I'm just curious as to why this happens, Is there any reason it wouldn't be working as a variable?

1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You need to single quote your variable ref.

If '$(vDayOfWeek)' ...

Take a look at the document log to understand what's going on.

-Rob

View solution in original post

2 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

You need to single quote your variable ref.

If '$(vDayOfWeek)' ...

Take a look at the document log to understand what's going on.

-Rob

Not applicable
Author

Thanks Rob,

Works perfectly and I hadn't even thought to check the document log to resolve it.