Sign in to join the conversation:
I'm trying to total up the job value column based on weekly totals. Can I have the formula calculate the weeknumber or do I have to create a helper column?
I am now running into the issue where my formula is counting weeknumbers over 2018 and 2019. How would I fix this in this formula to just pick up the weeknumbers in 2019?
=SUMIFS({MASTER SCHEDULE Range 4}, {MASTER SCHEDULE Range 5}, IFERROR(WEEKNUMBER(DATEONLY(@cell)), 0) = 36)
We would simply use an AND statement to include a YEAR function in the criteria.
=SUMIFS({MASTER SCHEDULE Range 4}, {MASTER SCHEDULE Range 5}, AND(IFERROR(WEEKNUMBER(DATEONLY(@cell)), 0) = 36, IFERROR(YEAR(DATEONLY(@cell)), 0) = 2019))
It's still totaling week numbers that are future.. see attached
I am not sure what you mean...
The formula above will sum all cells in range 4 who's date in range 5 falls within week number 25 of the year 2019.
What is the desired outcome?
week 38 is 9/15
week 39 is 9/22
Neither of those dates are in the range for 2019.
We enter those dates as we get retainers. it should be zero until we receive a retainer and someone records it.
You would need to include that logic in your SUMIFS formula.
Hi All, I have a project plan with a column called "Owner" that has a column type of contact list. The contacts are from multiple companies. It's a large project plan. I have created columns that have a column type of checkbox. I want to check the box if the owner is from a certain company (which can be determined by the…
Hello, I am trying to use JOIN-COLLECT to populate a cell with a contact by pulling from another sheet. However, when I use this formula it populates the cell with the name of the contact as a text string, but does not populate the cell with the contact itself. Both the column of cells being populated and the column the…
Hello Community, I need to create a report that shows capacity by month. My sheet tracks resource allocation on projects with resource start and end dates. (We can't afford the Resource Management module so we're doing it in Core SS). I've been asked to do a "heat map" of sorts where each column is a month. For each row…