Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How can i get the "strValue" in the place of the 38.
I need to make a selection with i from last week until te the first week.
"<38" works
(< strValue) gives a faillure.
Sub setWeektotnuToe()
set v = ActiveDocument.Variables("HuidigeWeek")
strValue = v.GetContent.String
ActiveDocument.Fields("Week").Select "<38"
End Sub
Sub setWeektotnuToe()
set v = ActiveDocument.Variables("HuidigeWeek")
strValue = v.GetContent.String
ActiveDocument.Fields("Week").Select "<"+(strValue)
End Sub
Is the sollution
Bye
Sub setWeektotnuToe()
set v = ActiveDocument.Variables("HuidigeWeek")
strValue = v.GetContent.String
ActiveDocument.Fields("Week").Select "<"+(strValue)
End Sub
Is the sollution
Bye