You need to use instance numbers of the fields instead of trying to use different field names.So, if all your date fields are called DateTimeField1 they will get instance numbers in brackets after them that you can access: DateTimeField1[0], DateTimeField1[1], etc.Also, you don't need to use rawValu...