Hi,
i'm a bit stuck at the moment with a bit of a logical problem.
https://docs.google.com/file/d/0B0naOkYo4pCmZkNtSHlEUnNWQk0/edit?usp=sharing
Now, in the above file you see that i have a column with due date, a column with Last serviced, and a Column with interval.
I'm looking for a way to keep a record of tasks completed this year, and tasks that are still open this year.
Now Interval is indicative of the months between each scheduled maintenance.
Date last serviced can be updated on the server by somebody who completed a task, and when that date changes, the due date changes depending on the interval.
So i am looking for a way to have a count of still open tasks this year, and the amount of tasks that are completed. I will prolly have to use circular logic to make some sort of log file as well to keep track of the overtime.
Now, not unimportant, this is for a file that is at this moment over 35.000 rows, and growing during the year.
I know this might be a lot at once to ask, but i'm looking for a way to get this started.
i have made something similar to this last month, but the file was different in a way that all open tasks didn't have a completed date filled in, so it was easier to just count all those that have a date, and get a list of completed that way.
for the logging i use something in the trend of
=IF(AND(P3<>"";P3<$B$2);IF(P4="";$B$2;P4);""), and that's working out nicely, but i'm kinda mindblocked on how to do this problem.
Thanks in advance
i'm a bit stuck at the moment with a bit of a logical problem.
https://docs.google.com/file/d/0B0naOkYo4pCmZkNtSHlEUnNWQk0/edit?usp=sharing
Now, in the above file you see that i have a column with due date, a column with Last serviced, and a Column with interval.
I'm looking for a way to keep a record of tasks completed this year, and tasks that are still open this year.
Now Interval is indicative of the months between each scheduled maintenance.
Date last serviced can be updated on the server by somebody who completed a task, and when that date changes, the due date changes depending on the interval.
So i am looking for a way to have a count of still open tasks this year, and the amount of tasks that are completed. I will prolly have to use circular logic to make some sort of log file as well to keep track of the overtime.
Now, not unimportant, this is for a file that is at this moment over 35.000 rows, and growing during the year.
I know this might be a lot at once to ask, but i'm looking for a way to get this started.
i have made something similar to this last month, but the file was different in a way that all open tasks didn't have a completed date filled in, so it was easier to just count all those that have a date, and get a list of completed that way.
for the logging i use something in the trend of
=IF(AND(P3<>"";P3<$B$2);IF(P4="";$B$2;P4);""), and that's working out nicely, but i'm kinda mindblocked on how to do this problem.
Thanks in advance