W
wpreqq99
When the user types in a Y in column O, the statement below will put
today's date in Column Q. The cells in Column Q have this formula:
=IF(O2="y",dateStamp()," ")
Here's what I have in a module:
Function DateStamp()
DateStamp = Date
End Function
What I would like to do is to add something like this
ActiveCell.Formula = ActiveCell.Value
I want the cell in Column Q to be static after the Y in typed in.
Right now, that value will change each day.
I've tried to add the last line in the Function module, and it doesn't
work. I've tried to have a seperate Sub, but it won't go there from
the Function module.
Any suggestions?
today's date in Column Q. The cells in Column Q have this formula:
=IF(O2="y",dateStamp()," ")
Here's what I have in a module:
Function DateStamp()
DateStamp = Date
End Function
What I would like to do is to add something like this
ActiveCell.Formula = ActiveCell.Value
I want the cell in Column Q to be static after the Y in typed in.
Right now, that value will change each day.
I've tried to add the last line in the Function module, and it doesn't
work. I've tried to have a seperate Sub, but it won't go there from
the Function module.
Any suggestions?