Dec 21, 2005 #1 t16turbo Programmer Mar 22, 2005 315 GB Hi there, I have a text control in the 'before' section which includes 2 data parameters: Code: "Date Range: " & param_start_period & " - " & param_finish_period how can I format these to dd-mmm-yyyy format?
Hi there, I have a text control in the 'before' section which includes 2 data parameters: Code: "Date Range: " & param_start_period & " - " & param_finish_period how can I format these to dd-mmm-yyyy format?
Dec 21, 2005 #2 johnberchmans Programmer Jul 8, 2005 32 US I assume data type of param_start_period is date. You can use format function as follows: format(param_start_period,"dd-mmm-yyyy") I hope this helps. -- JB Upvote 0 Downvote
I assume data type of param_start_period is date. You can use format function as follows: format(param_start_period,"dd-mmm-yyyy") I hope this helps. -- JB