Hi,
I've been trying to find a way to automate exporting my shifts from work from excel into outlook.
I've been manually typing each shift into outlook calendar and it's just getting tedious.
I've managed to copy the relevant data and manually format and save as a .csv and import.
I also managed to record a macro that providing you copy the relevant data from the main spreadsheet into a new one and delete any black or other not needed rows creates a new sheet with the correct formatting.
again this still quite a bit of manual work
i'm sure there is a way to automate this.
The format of the origional spreadsheet is like this, I've tried to include every possible option that could be in each day.
<tbody>
</tbody>
To import into outlook / google calendar via .csv the format needs to be
Anyone any ideas how to automate this one?
I've been banging my head on the screen for about a week trying to figure it out.
I've been trying to find a way to automate exporting my shifts from work from excel into outlook.
I've been manually typing each shift into outlook calendar and it's just getting tedious.
I've managed to copy the relevant data and manually format and save as a .csv and import.
I also managed to record a macro that providing you copy the relevant data from the main spreadsheet into a new one and delete any black or other not needed rows creates a new sheet with the correct formatting.
again this still quite a bit of manual work
i'm sure there is a way to automate this.
The format of the origional spreadsheet is like this, I've tried to include every possible option that could be in each day.
<tbody> </tbody> | User 1 | User 2 | ||
<tbody> </tbody> | Monday | 08:00-16:00 | 09:00-17:00 | |
<tbody> </tbody> | Tuesday | 10:00-18:00 | 12:00-20:00 | |
<tbody> </tbody> | Wednesday | ls 08:00-16:00 | ls 09:00-17:00 | |
<tbody> </tbody> | Thursday | ls 10:00-18:00 | ls 12:00-20:00 | |
<tbody> </tbody> | Friday | fm 08:00-16:00 | fm 09:00-17:00 | |
<tbody> </tbody> | Saturday | fm 10:00-18:00 | fm 12:00-20:00 | |
<tbody> </tbody> | Sunday | |||
<tbody> </tbody> | User 1 | User 2 | ||
<tbody> </tbody> | Monday | zd 08:00-16:00 | zd 09:00-17:00 | |
<tbody> </tbody> | Tuesday | zd 10:00-18:00 | zd 12:00-20:00 | |
<tbody> </tbody> | Wednesday | HOLIDAY | RESTDAY | |
<tbody> </tbody> | Thursday | 08:00-16:00 (f) | 09:00-17:00 (f) | |
<tbody> </tbody> | Friday | 10:00-18:00 (f) | 12:00-20:00 (f) | |
<tbody> </tbody> | Saturday | |||
<tbody> </tbody> | Sunday |
<tbody>
</tbody>
To import into outlook / google calendar via .csv the format needs to be
Code:
[TABLE="width: 430"]
<tbody>[TR]
[TD]Subject-[/TD]
[TD]Start Date-[/TD]
[TD]Start Time-[/TD]
[TD]End Date-[/TD]
[TD]End Time-[/TD]
[TD]Description[/TD]
[/TR]
[TR]
[TD]work -[/TD]
[TD="align: right"]08/04/2013[/TD]
[TD] -08:00[/TD]
[TD="align: right"]08/04/2013[/TD]
[TD] -16:00[/TD]
[TD]Todays Shift[/TD]
[/TR]
</tbody>[/TABLE]
Anyone any ideas how to automate this one?
I've been banging my head on the screen for about a week trying to figure it out.