I am trying to do business with the Florida Department of Health. In order to do this, I need to produce a text file that meets their specifications. I have an Excel spreadsheet that takes input from an HTML copy of the Google sheet. Formulas in the spreadsheet take that information and parse it out into two additional spreadsheets. I then take those spreadsheets and convert them to a text file. My problem is that the text file produced by the spreadsheet does not look like the text file required by the state of Florida.
Their file specification looks like this:
User ID, 501044-REFRIGERATOR 1
Index,Date,Time,Readings(F), Inspection Mark
1,"8/11/2015","4:59:04 PM",41.4,
2,"8/11/2015","5:14:04 PM",41.4,
3,"8/11/2015","5:29:04 PM",41.5,Person1
4,"8/11/2015","5:44:04 PM",41.5,
My file looks like this:
User ID,MPEDS-F,,,
Index,Date,Time,Readings (F),Inspection Mark
1,1/26/2018,11:02:00 PM,-2,
2,1/27/2018,12:02:00 AM,-1.7,
3,1/27/2018,1:02:00 AM,-2.2,
4,1/27/2018,2:02:00 AM,-1.8
Solved by X. W. in 16 mins