Gerard
I think the expression should be like this:
parseDateTime($iteratorImportBewaardersTelefoon/Jaar + '-' + $iteratorImportBewaardersTelefoon/Maand + '-' + $iteratorImportBewaardersTelefoon/Dag + ' ' + $iteratorImportBewaardersTelefoon/Uur + ':' + $iteratorImportBewaardersTelefoon/Minuten + ':' + '00 ' + $iteratorImportBewaardersTelefoon/AM_PM, 'yyyy-mmm-dd hh:mm:ss aa')
I made the following changes to your expression: - made the 0 into a string '00' - added a space after the seconds ('00' became '00 ') - added AM/PM indicator to the date format (aa on the end of the format)
Let me know if that helps.
Mike
Problem solved. Thanks very much.