Hi, currently struggling with counting number of days based on dates taking data from a FILTER generated table:
This is the Root Data tab:
This Root tab is the root data tab showing vendor documents and their Revision Dates, Planned Submission Dates as well as Actual Submission Dates.
And this is Report tab:
Now what I need to do is to calculate and display on both cell G4 and H4, on these criteria:
1. On G4 count and display the number of days 10 working days after either Revision Date or Actual Submission Date, with Actual Submission Date taking precedence. This means only if Actual Submission Date is empty, then count using Revision Date. And subsequently on G5, G6, G7 and so on.
2. On H4 count and display the number of days between Planned Submission Date and today's date, and leave cell empty if Planned Submission Date is empty. And H5, H6, H7 and so on.
3. If both Revision Dates and Actual Submission Dates are empty, this document has not been received by vendor. Then both G4 and H4 should display "N/A".
In Report tab, I have utilised FILTER function to only display vendor packages documents based on dropdown list on cell J3. And this is based on range A4:F17, including A4:A17 in Root tab.
On F4 count in Report tab, my formula is:
On G4 count, my formula is:
But right now everything is showing "N/A" no matter the circumstance. Unsure where I've done wrongly. I suspect it's the FILTER but seeking some help here while pulling my hair out again.
Also, Report tab C5 shows 0 instead of being empty, how do I let it be empty instead of showing 0?
Thank you so much.
Oh I must apologise for not being able to upload the mini sheet, using work laptop I can't install the browser plug-in. Cheers.
This is the Root Data tab:
This Root tab is the root data tab showing vendor documents and their Revision Dates, Planned Submission Dates as well as Actual Submission Dates.
And this is Report tab:
Now what I need to do is to calculate and display on both cell G4 and H4, on these criteria:
1. On G4 count and display the number of days 10 working days after either Revision Date or Actual Submission Date, with Actual Submission Date taking precedence. This means only if Actual Submission Date is empty, then count using Revision Date. And subsequently on G5, G6, G7 and so on.
2. On H4 count and display the number of days between Planned Submission Date and today's date, and leave cell empty if Planned Submission Date is empty. And H5, H6, H7 and so on.
3. If both Revision Dates and Actual Submission Dates are empty, this document has not been received by vendor. Then both G4 and H4 should display "N/A".
In Report tab, I have utilised FILTER function to only display vendor packages documents based on dropdown list on cell J3. And this is based on range A4:F17, including A4:A17 in Root tab.
On F4 count in Report tab, my formula is:
=IFS(
OR(AND(D4="",F4=""),C4<>"Under Review"),"N/A",
F4<>"",NETWORKDAYS.INTL(J4+10,TODAY(),"0000011"),
D4<>"",NETWORKDAYS.INTL(F4+10,TODAY(),"0000011"))
On G4 count, my formula is:
=IFS(
C4="","",
OR(D4<>"",F4<>""),"N/A",
AND(D4="",F4=""),NETWORKDAYS.INTL(E4,TODAY(),"0000011"))
But right now everything is showing "N/A" no matter the circumstance. Unsure where I've done wrongly. I suspect it's the FILTER but seeking some help here while pulling my hair out again.
Also, Report tab C5 shows 0 instead of being empty, how do I let it be empty instead of showing 0?
Thank you so much.
Oh I must apologise for not being able to upload the mini sheet, using work laptop I can't install the browser plug-in. Cheers.