I would like to check to iterate through and see if the next start date (e.g. Start[ i + 1]) is before the current finish date (e.g. Finish[i]). Having a lot of trouble figuring out how to compare different data in different positions of the array and iterating through the info. Feel like this should be super simple but totally stumped here.
Thank you! This splice function works to remove the first date in Start array, shifting all other dates one position up. Then it’s comparing apples between the two arrays.
This is close but the issue is it appears to still be comparing the same relative positions of each array. My biggest hangup was comparing Start [i+1] to Finish [i]. Shornalatha’s solution of slicing the first entry out of Start works.