Administration wants to list the actual dates each employee took off during the year. However, the recording system lists only the first date and the number of total vacation hours.
So I need to get from
[TABLE="class: grid, width: 300, align: left"]
<tbody>[TR]
[TD]Joe Blow[/TD]
[TD]9/6/17 [/TD]
[TD] 75[/TD]
[/TR]
</tbody>[/TABLE]
to
[TABLE="class: grid, align: left"]
<tbody>[TR]
[TD]Joe Blow[/TD]
[TD]9/6/17[/TD]
[TD]9/7/17[/TD]
[TD]9/8/17 (skip the weekend)[/TD]
[TD]9/10/17[/TD]
[TD]etc[/TD]
[/TR]
</tbody>[/TABLE]
I can convert hours to days and use WORKDAY to tell me the end date, but can I make it list for me all the dates in between?
So I need to get from
[TABLE="class: grid, width: 300, align: left"]
<tbody>[TR]
[TD]Joe Blow[/TD]
[TD]9/6/17 [/TD]
[TD] 75[/TD]
[/TR]
</tbody>[/TABLE]
to
[TABLE="class: grid, align: left"]
<tbody>[TR]
[TD]Joe Blow[/TD]
[TD]9/6/17[/TD]
[TD]9/7/17[/TD]
[TD]9/8/17 (skip the weekend)[/TD]
[TD]9/10/17[/TD]
[TD]etc[/TD]
[/TR]
</tbody>[/TABLE]
I can convert hours to days and use WORKDAY to tell me the end date, but can I make it list for me all the dates in between?