Hi, I’m trying to make a simple custom macro to display in the date format of DD.MM.YY HH:MM. The macro is
Function NowStatic()
NowStatic = Now
End Function
The thing is, at home this works perfectly, but on the file at my workplace (where I actually want to do this) the date format just won’t change from the default - this is despite that when you check the date format of the cell, the one I need is picked, but it just doesn’t do anything. Nor does any other date format, for that matter. In the very same file\cells, if I use the built-in Now() function it works just fine, however I don’t want to use this one as I don’t want the time or date to update once the cell has been filled. Google results have shown there are a lot of cases of the date format being problematic, but no solution worked for me so far.
Would appreciate any help!