Hi, thanks so much for all the help I have received here to my [very dorky] queries here. Thank you!! (This is long, sorry! Hopefully someone will have enough patience to get through it.)
I'm using a sumproduct formula, and when I change one part of it, it changes my data by 100%. I'm wondering why, and what to do to avoid that because I sometimes will need to use the "troublesome" formula.
What I am using this for is to get stats about survey responses. Here is the sumproduct formula I use to match some data between two columns, and if that matches, give me the percentage responding with certain responses.
So, if I use the formula as shown below, gives me 50% of the responses I've received. The last line of the formula + the 2nd-to-last line gives me the percentage of total responses by adding the folks who responded greater than or = to 1, and less than or equal to 8 (8 possible responses).
So to increase the responses to 100% of those I received for the question, I find is reached if I delete the last line, or the "($DK$2:$DK$1364<=8)".
However, for SOME questions, there is a "decline" option in the last response, so I will NEED to use this >= and the <= but I'm worried using both of these will alter my total responses.
Any way to avoid this happening? And, why is it happening anyway? It doesn't make any sense to me. Thank you so much for your help!!
I'm using a sumproduct formula, and when I change one part of it, it changes my data by 100%. I'm wondering why, and what to do to avoid that because I sometimes will need to use the "troublesome" formula.
What I am using this for is to get stats about survey responses. Here is the sumproduct formula I use to match some data between two columns, and if that matches, give me the percentage responding with certain responses.
So, if I use the formula as shown below, gives me 50% of the responses I've received. The last line of the formula + the 2nd-to-last line gives me the percentage of total responses by adding the folks who responded greater than or = to 1, and less than or equal to 8 (8 possible responses).
So to increase the responses to 100% of those I received for the question, I find is reached if I delete the last line, or the "($DK$2:$DK$1364<=8)".
However, for SOME questions, there is a "decline" option in the last response, so I will NEED to use this >= and the <= but I'm worried using both of these will alter my total responses.
Any way to avoid this happening? And, why is it happening anyway? It doesn't make any sense to me. Thank you so much for your help!!
=SUMPRODUCT(
--($DG$2:$DG$1364=$HD3),
--ISNUMBER(MATCH($DK$2:$DK$1364,{5,6,7,8},0)))/
SUMPRODUCT(
--($DG$2:$DG$1364=$HD3),
--($DK$2:$DK$1364>=1)
--($DK$2:$DK$1364<=8))