convert MM-DD-YYYY TO MMDDYYYY infopath
so for example date: 05-05-2011 would be 05052011 in Info path?
How do I do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
number(concat(substring(string(.), 1, 4), substring(string(.), 6, 2), substring(string(.), 9, 2)))string(.)will convert the date field into a string on the format yyyy-mm-dd. I have written this rule in the text change of the date field, that’s why . is used, you can replace the . with the XPath to your field.