I have a spreadsheet with outstanding repair / maintenance jobs. I have been asked to break that down into jobs that are > than 3 months old and then break them down into Yearly stats.
I think i have the greater than 3 months jobs sorted with
=IF(AND(PlannedDate <> "",PlannedDate < CutOffDate,Location <> "ITU",Location <>"NETS",JobType = "PPM"),1,0)
Which takes out the jobs with no planned date and a planned date less than the cut off date and doesn't contain either of the locations and has a job type as "PPM". Then using the SUM formula in another 'Totals' sheet.
My problem is with trying to break it down into yearly stats.
I've used
=IF(AND(PlannedDate<CutOffDate,PlannedDate<>"",Location<>"ITU",Location<>"NETS",PlannedDate>=1/1/2012,PlannedDate<=31/12/2012),1,0)
The SUM for this returns 0 even though I know the answer should be more than that.
Any help would be appreciated.
Thanks
Alan
I think i have the greater than 3 months jobs sorted with
=IF(AND(PlannedDate <> "",PlannedDate < CutOffDate,Location <> "ITU",Location <>"NETS",JobType = "PPM"),1,0)
Which takes out the jobs with no planned date and a planned date less than the cut off date and doesn't contain either of the locations and has a job type as "PPM". Then using the SUM formula in another 'Totals' sheet.
My problem is with trying to break it down into yearly stats.
I've used
=IF(AND(PlannedDate<CutOffDate,PlannedDate<>"",Location<>"ITU",Location<>"NETS",PlannedDate>=1/1/2012,PlannedDate<=31/12/2012),1,0)
The SUM for this returns 0 even though I know the answer should be more than that.
Any help would be appreciated.
Thanks
Alan