Dec 14 2023 08:22 PM
I have a table that I would like to extract listed tasks in column A and the duration in column B if the start date is between the e12:ab12 dates. I would like to have the tasks ordered chronologically in column A and if there are multiple tasks starting the same date they should be ordered from shortest duration to longest. any help on this would be appreciated. Thanks in advance.
Dec 15 2023 03:58 PM
Hi @FrogFace
Try this approach using Filter and Sort functions to achieve that.
Here's the example formula:
=SORT(FILTER(A2:B100, (C2:C100>=E12)*(C2:C100<=AB12)), 1, 1, 2, 1)
A2:B100, is the range of tasks and durations
C2:C100, is the range start dates
E12 and AB12 are the start and end dates you want to filtered between.
Filter function filters the tasks based on the start date criteria
Sort function orders them chronologically and by duration if they have same start date.
*change/replace the ranges in the formula with your actual data ranges. Let me know if you need further assistance!
Dec 15 2023 07:31 PM
Dec 15 2023 07:37 PM - edited Dec 15 2023 07:41 PM
@FrogFace
Could you provide a sample file.
Dec 16 2023 11:12 AM
I'm new to this community so it looks like im not allowed to upload documents without permission. When I enter your formula there is a spill error. another problem i can see happening with that formula is, i.e. the first given task may start before 12/11 (cell e12), say on 12/10, but with a duration of 3 days, that task should be included in the visual, but it looks like it would not be included using the formula provided above. Does that make sense?
Thanks again for your help.
Dec 16 2023 07:32 PM
@FrogFace
okay, try this adjusted formula
=SORT(FILTER(A2:B100,
((C2:C100+E2:E100)>=E12)*(C2:C100<=AB12)), 1, 1, 2, 1)
The formula now checks if the end date of a task (start date + duration) falls within the desired date range. If a task starts before E12 but ends after it due to its duration, it will be included in the results.