I have a date variable (currently set to generic value). It is pulling data from excel and typing into pdf form. In excel it reads mm/dd/yyyy format. But on the pdf form, it needs the month, day, and year in separate boxes. I tried datevariable.ToString(“mm”) for month but it only types “mm” onto the pdf. Any ideas? Do I need to change the variable type?
I was thinking, if you already have a string you can split it on basis of / and then use the values 0,1,2 respectively
IF you are going to have to covert etc. because you want a string value, not necessarily a date.