Possibility to return date(s) as serial number for calculations?

E

Eric G

Hello,

Is there a possibility in FP 2003 (XPP) to read (have the system to provide)
date(s) in serial number format, like in Excel? And, subsequently use this
serial number for further calculations.

Or, would it be possible to do this through html?

I would be grateful for any suggestions.

Best regards,



Eric G
Stockholm, Sweden
 
T

Thomas A. Rowe

You would have to do this with a server-side script such as ASP, ASP.net, PHP, etc.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
M

MD Websunlimited

Hi Eric,

Yes, using ASP the following line will create a date serial. in a hidden form field

<input type="hidden" value="<% =dateserial(year,month,day) %>" >
 
Top