PDA

View Full Version : vbld_FormatDate() question


ChrisF
05-25-2010, 01:07 PM
I'm using a Write XML step and want to enter a date in a nodeset with the following format.

25 May 2010

What should the text be in the "Text to assign..." box in the XPath tab? I tried

[vbld_FormatDate([vbld_FormatDate()], dd mmm yyyy)]

but I get syntax errors.

kinook
05-25-2010, 01:10 PM
[vbld_FormatDateEx(Now, "dd mmm yyyy")]

ChrisF
05-25-2010, 02:48 PM
Thanks!