My need was to avoid typing in things like baseball and basketball schedules. Both of these have different formats depending on what the team puts on their site for public download. I think there a lot of people that have data that could be displayed on a WP installation that is in csv or tab format so they would end up needing an RSS import solution.
Just below is a cut and paste of a line from the csv for the Diamondbacks. This is I think output from an Outlook calendar. Most of the stuff isn't necessary in WP but two things stand out. Would need to create the post time through some sort of concatenation. Also need to make a GMT version.
START_DATE,START_TIME,START_TIME_ET,SUBJECT,LOCATION,DESCRIPTION,END_DATE,END_TIME,END_TIME_ET,REMINDER_OFF,REMINDER_ON,REMINDER_DATE,REMINDER_TIME,REMINDER_TIME_ET,SHOWTIMEAS_FREE,SHOWTIMEAS_BUSY
2/28/2008,1:05 PM,3:05 PM,Rockies at Diamondbacks,Tucson Electric Park,Spring training game - buy tickets now! http://mlb.mlb.com/spring_training/tickets.jsp?c_id=ari,2/28/2008,4:05 PM,6:05 PM,FALSE,TRUE,2/28/2008,12:05 PM,2:05 PM,FREE,BUSY
So:
Does excel have a formula to convert the two separate Date and columns or just change the format to match what you put above and concat the date, a space, and then the time?
Write a formula for adding whatever number of hours to your local time to create the GMT. I wrote a simple formula in a cell and the concat grabs the result.
Can line feeds or whatever formatting be used in the concat function in Excel? Or placed in a cell and added in that way? This would avoid formatting the text file later.
Nice little project here. Would have been done typing in the games by now. :)