Hello, as a workaround, I am using the related EXCEL file generated by MS Forms!
So I can map all the fields correctly, it's a very long activity but at least it's working.
What I am doing is reading each row in the related Excel file populated by the forms using "LIST ROWS PRESENT IN A TABLE", so that I can generate a PDF with all the already submitted data by form, using the fields in the Excel file.
Please be aware with the time/Date field. When reading from the Excel, it will translate in a number (floating).
There will be a floating type numer, with a dot ( "." )
So you will get something like: 43215.4569123 and not "05/24/2019 03.25 PM"
What I did is to separate the number in 2 numbers.
Then I am calculating 43215 days from 30th December 1899 ("Add to time")
So you will get the DAY.
The decimals are the fraction of a day.
so I am adding again "0." before the string splitted number, taking (for example): 0.4569123
and you have to multiply it with the seconds of a day.
example:
0.4569123 * 86400 ("Mul()" funcion in your flow)
Then I am adding this number to the start of day, that is midnight 00.00 ("Add to time")
Andy you will get the TIME.
What you have to do is then to join the two calculated times.
Hope this helps!
Andrea