How to get gap in date ranges from a period of time
问题 I have an initial and a final date range = 1/1/2015 - 1/30/2015 I have these date ranges that represent dates of unavailability. 1/5/2015 - 1/10/2015 1/15/2015 - 1/20/2015 1/22/2015 - 1/28/2015 I want this output, mainly the dates of availability from the main range: A: 1/1/2015 - 1/4/2015 B: 1/11/2015 - 1/14/2015 C: 1/21/2015 - 1/21/2015 D: 1/29/2015 - 1/30/2015 I tried to generate a sequential date range like this in order to get the exception dates with Except() but I think I'm