Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Date Calculation
Message
From
03/01/2007 13:13:46
 
 
To
03/01/2007 12:57:23
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows 2000 SP4
Network:
Windows 2000 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01181507
Message ID:
01181880
Views:
10
>Hi Terry,
>
>Thanks for your code. Your code and the others gave me the same result.
>
>Here is the function that I am using that is giving different result as everyone else. Please help.
>
>
>PARAMETERS d1,d2
>
>if (type("d1")="D" and type("d2")="D")	&& both variables present?
>  wd=0	&& variable to hold total number of weekdays
>  for D=0 to d2-d1
>    if between(DOW(d1+D),2,6)	&& 2=Mon 6=Fri
>      wd=wd+1
>    endif
>  endfor
>  return wd
>else
>  return 0
>endif
>
>
>Thanks,
>Sam

DOW() function w/o second parameter uses whatever day is currently selected in the Week Starts On list box, which appears on the Regional Tab in the Options dialog box or what is set with SET FDOW TO ...
Change between(DOW(d1+D),2,6) to between(DOW(d1+D,1),2,6)
or in Terry's function :
IF DOW(....,2) < 6
   .... + 1
ENDIF
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform