View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
broro183[_2_] broro183[_2_] is offline
external usenet poster
 
Posts: 32
Default Loop and variable type

hi Anne,

All of your checks & changes refer to datDate but the msgbox refers to
StrDate. does it work as expected if you change the last line from "MsgBox
strDate" to ""MsgBox datDate"?

hth
Rob


__________________
Rob Brockett
NZ
Always learning & the best way to learn is to experience...

"Arne Hegefors" wrote:

Hi! I have a loop in which I sometimes add to a variable. I check if a date
is a saturday, if yes then I check if it the day following that (ie the
sunday) is the last day of the month. if it is the last day of the month then
I add 1 to the variable datDate and if it is not the last day of the month
then I add 2. This works fine in the loop but once the code goes to the
MsgBox then datDate has the same value as before. Please help me solve this!
Thanks alot!

If Weekday(datDate) = 7 Then 'saturday
If Month(datDate) = Month(datDate + 1) Then
If Month(datDate + 1) < Month(datDate + 2) Then
datDate = datDate + 1 'jump to
sunday since last day of month
Else
datDate = datDate + 2 'jump to
monday
End If
End If
End If

MsgBox strDate