Potential answer, but ugly. I persevered, brute force, with the understanding the decimal part of an excel date/time is the hrs, minutes, seconds. And I just want the decimal seconds. Not offering this as the right way to do it, but it at least gave me the added decimal precision. Expectation is you already have the GimmeUTC function working. No, I didn't try to simplify it, just happy it is working.
=GimmeUTC()+(((NOW()-TRUNC(NOW()))*24*60*60) -TRUNC((NOW()-TRUNC(NOW()))*24*60*60))/(24*60*60)
1) You use truncate to leave you with the decimal portion of the time. (this would be some part of a day in hrs, minutes, seconds as decimal number)
2) Then truncate again having created a huge decimal number by X the above by hrs, mins, seconds (24,60,60) which should be xxxxx.yyyyy seconds. I just want the yyyy part.
3) Hopeful we have a number now that is exactly the missing decimal value, but we need to scale it back by dividing by hrs, mins, seconds (24,60,60) to get decimal seconds in excel time.
I could have made a single number (24x60*60) but then you'd want to know where it came from. So I kept it simple, and obvious.
drW
Or maybe, there is a feature/function/switch somewhere to actually enable the decimal precision
Not everyone needs this type of precision, I just happen to need/want it.