I have a userform that allows the user to enter "from" and "to" dates to search through the data that corresponds with the date range the user selects. In the spreadsheet, the date is in column A, and there is a series of data that corresponds to that date in the following columns for each row through column W. I'm trying to develop a code that can take those two dates and look at only the rows that have a date that falls into the entered date range in Column A, and then count the responses in each of the columns within the rows that have dates within the specified range. I'd then like to put the count values into a specific cell for each response's count in a separate worksheet within the same workbook. There are 6 defined responses for each possible response column, so the countif function seems to me to be the most logical.
This sounds rather complicated, but this is my best way to summarize it. I'm open to using autofilters or anything else, but it must be done using vba, and if it uses an autofilter, then it must be returned to the pre-autofilter screen at the end of the sub.
EDIT:
OK, I guess I wasn't very clear. To your first question, the reason why it goes to W is because there are a couple other items associated with each row that are not necessarily relevant for this analysis. The columns with relevant data responses are columns D through W. There is only one date entered into each row, and that is in column A (you can ignore/skip columns B & C). For each column (in this case, a question on a survey), there are 6 defined possible responses that could be entered.
So, for example, D3 could say "Strongly agree", "Somewhat agree", "Somewhat disagree", "Strongly disagree", "No response", or "Not sure/not applicable". This is the case for all of the questions associated with each column. Therefore, I want to be able to pull up a row that has a date that falls within two designated dates (beginning date and end date of range), and then looks across the row to columns D through W and counts the number of the 6 possible responses (described above) for each column ( or "question"). I then want the value of the counts for each possible response within each column to be copied to a specific cell in another worksheet (in this case, Sheet3).
Yes, I meant to say that it needs to filter through column A responses that fall within the specified date range, and then run the countifs for each of the possible responses for each of the 16 columns in the rows that met the date criteria for column A. Does that make sense?
I am open to using any kind of advanced filter or autofilter, but if there are other ideas out there to sort through the dates in Column A based on two userform designated dates, then look to the corresponding rows to the 16 question columns and count the number of each of the 6 possible responses for each question, and put that count into a designated cell on another worksheet (Sheet3).
I've tried to do it as a countif and copy and paste for each possible response for each column after attempting an autofilter, but it wasn't actually filtering it. It seems like even if I got it to work, this wouldn't be the most efficient way of doing it. Here's the code for two of the responses for one column as an example of my coding attempt (the full code accounts for 6 possible responses for 15 columns, so it seemed overly long to include here):
Private Sub cbOkDateEnter_Click()
Dim ws As Worksheet
Set ws1 = ThisWorkbook01.Sheets("Sheet1")
With Range("A1:W" & lr)
.AutoFilter Field:=1, Criteria1:=">=" & tbEnterDate01, Operator:=xlAnd, Criteria2:="<=" & tbEnterDate02
Dim sum01a, sum01b as Variant
sum01a = Application.WorksheetFunction.CountIf(Sheets("Sheet1").Range("D2:D5000"), "Strongly disagree")
Worksheets("Sheet3").Range("J12").Value = sum01a
sum01b = Application.WorksheetFunction.CountIf(Sheets("Sheet1").Range("D2:D5000"), "Somewhat disagree")
Worksheets("Sheet3").Range("J13").Value = sum01b
End Sub
Any help would be greatly appreciated! Thanks!
I am not sure why you use ColumnW with 15 columns (don't really have any idea of what is where!) but am curious whether this is any help (for running in a new sheet):
This assumes: in that sheet (not Sheet1)
A1
contains your start date,A2
your end date andA3:A8
your six possible responses. Based on Record Macro, I trust you can adjust as required (if nearly there!) or come back with further details for help.