Scenario: I created a web form that generates rows in a sheet that require follow-up from another individual. Each line is assigned to someone else for follow up when the web form submitter selects them from a drop down.
That person is then notified. The selected person then goes into the sheet and makes updates to the sheet itself, changing the status as needed.
I am trying to determine the percentage of the entire document, by it's status AND its assigned person, AND by date range and generate a report.
So far, I have been able to do get the first two parts by using COUNTIFS function.
Ex:
=COUNTIFS(Status:Status, "Final Attempt Completed", [Assigned Salesperson]:[Assigned Salesperson], "James")
Then I show that number as a percentage in another column.
Ex:
=[James Final Attempt Completed]1 / [Total Records]1
Where I am running into trouble is when I try to cross reference this formula in a report with a date range.
I wondered if I could combine these two functions into one column by nesting the functions? Can you nest multiple functions? Can anyone help?
Thanks so much!