L
Lisa Clarke
Hi.
Simple question I'm sure......
I want to create a function with an input box to enter in
a year end date, then I want to pass this value SOMEPLACE
to store it. Then I can use it in a variety of other
places - BUT I don't want it to run the input box function
when I use the date.
Thanks
Lisa
Here's what I have so far.
Public Function currentyearend() As Date
End Function
Public Function setyearend() As Date
setyearend = InputBox ("Please enter the current year
end date")
???? Set currentyearend = setyearend
End Function
Simple question I'm sure......
I want to create a function with an input box to enter in
a year end date, then I want to pass this value SOMEPLACE
to store it. Then I can use it in a variety of other
places - BUT I don't want it to run the input box function
when I use the date.
Thanks
Lisa
Here's what I have so far.
Public Function currentyearend() As Date
End Function
Public Function setyearend() As Date
setyearend = InputBox ("Please enter the current year
end date")
???? Set currentyearend = setyearend
End Function