I am a bit stuck here.
I have a smartsheet (Survey Responses) that contains data from form responses from a survey. The data is synced directly from Google Forms into Smartsheet. (See below.)
I have created another smartsheet (Survey Data Points) to compile data points for metrics and reporting, which contains various formulas.
Rows 2-23 have a formula similar to the following:
=COUNTIF({Survey Responses Range 1}, "Yes")
(Range 1 is the Requirements column from Survey Responses for reference. Range 2 is the Satisfaction column. The list is pretty intuitive from there.)
Rows 24-30 have a formula similar to the following, which is based on a cell that can have more than one predefined answer selected. Hence, the use of FIND below.
=COUNTIF({Survey Responses Range 7}, FIND("Planning", @cell) > 0)
Additionally, the Survey Responses sheet (see at top) has a column labeled Timestamp, which is the date and time supplied in the following format:
7/26/2022 9:31:18
I need to expand my existing formula to include a date range for each quarter. I assume I would be using a COUNTIFS, but I've hit a brick wall on how to write this correctly. So say for Q3 of 2022, I want to find the number of "yes" answers to Requirements between 07/01/2022 and 9/30/2022 based on the date and time in the Timestamp column.
But on rows 24-30 it gets more complicated because of FIND.
The end goal is to feed all of this data up to a dashboard with a set it and forget it approach. Data comes over from the Google Form into the Smartsheet while another creates compiled data points that will be fed into a Dashboard widget.
If you are asking why I am not using a Smartsheet form to capture data, we use Google Workspace, so it is easier to capture the user info without an additional login. I am also using Zapier to automate this process, which forces my hand here a bit. Defining each column data type by anything other than Text/Number in Smartsheet will break the automation.
Any help is appreciated.