I am having trouble with my formula. I'm a newbie and my logic be flawed and terrible. Learning in progress. I thought I had received the answer but as it turns out I was still trying to acquire more information. Essentially what I want to do is run the calculation below:
=COUNTIFS({Action Plan Week Requested Date}, <=[1]1, {Action Plan Week Finish}, >=[1]1)
The only issues is that I have to create two new columns that give me the Numberweek Dates and I have to drag the formulas down.
Essentially I was condensing everything into one formula on a seperate sheet so that way I do not produce extra columns on the smartsheet. I used the formula below but it did not work as I thought it would.
=COUNTIFS(Action Plan Request Date}, IFERROR(WEEKNUMBER(@cell), 0) <= [1]1, {Action Plan Actual Finish}, IFERROR(WEEKNUMBER(@cell), 0) >= [1]1) + COUNTIFS({Action Plan Request Date}, IFERROR(WEEKNUMBER(@cell), 0) <= [1]1, {Action Plan Actual Finish}, @cell = "", {Action Plan Finish Date}, IFERROR(WEEKNUMBER(@cell), 0) >= [1]1)
I'm basically doing a rolling count of an item from when it opens until it closes (ie. has a Plan Finish or Actual Finish Date). For Instance if the request date is week 3 then it count for week 4, week 5, week 6, etc. until the Plan finish or actual finish.