Question

In: Advanced Math

What is the function and argument to calculate the sum of the values in the range...

  1. What is the function and argument to calculate the sum of the values in the range D1:D50 for which in the adjacent value in the range A1:A50 equals “Senior” and the adjacent value in the range B1:B50 equals “B”?
  2. What is the function and argument to calculate the average of the cells in the range C1:C50 for which the adjacent cell in the range B1:B50 equals “B”?
  3. What is the function and argument to return the index number of the cell within the range E1:E50 that is equal to “Carter”, using an exact match?

Solutions

Expert Solution

Q1) What is the function and argument to calculate the sum of the values in the range D1:D50 for which in the adjacent value in the range A1:A50 equals “Senior” and the adjacent value in the range B1:B50 equals “B”?

Answer) The required function is:


In text form:

=SUMIFS(D1:D50,A1:A50,"Senior",B1:B50,"B")

Q2) What is the function and argument to calculate the average of the cells in the range C1:C50 for which the adjacent cell in the range B1:B50 equals “B”?

In text form:

=AVERAGEIF(B1:B50,"B",C1:C50)

Q3) What is the function and argument to return the index number of the cell within the range E1:E50 that is equal to “Carter”, using an exact match?

In text form:

=MATCH("Carter",E1:E50,0)

Hope this was helpful. Please do leave a positive rating if you liked this answer. Thanks and have a good day!


Related Solutions

Make a function that calculates the summation of even numbers in the range. The function sum...
Make a function that calculates the summation of even numbers in the range. The function sum takes the two integer parameters and they are used as the range. The function uses default parameters for the range. When we call this function with one argument, it will be used as a starting point and the end of the range will be 100. Also, the function is called without any argument, the default range (0,100) will be used. We will use default...
In java, Write a recursive function to calculate the sum of the nodes only on even...
In java, Write a recursive function to calculate the sum of the nodes only on even levels of the subtree. please do not add any parameters to do this function. private int sumEvenLevels(Node current){ //you can only pass in root. //code }
Write, specify and prove the function copy that copies a range of values into another array,...
Write, specify and prove the function copy that copies a range of values into another array, starting from the first cell of the array. First consider (and specify) that the two ranges are entirely separated. Note: Prototype is as below. void copy(int const* src, int* dst, size_t len){ }
Use the values provided to complete the questions below. a. What values are out of range?...
Use the values provided to complete the questions below. a. What values are out of range? b. Are they high or low? c. Which abnormal value concerns you the most? d. What nursing assessments must you perform because of this? e. What priority nursing intervention would you anticipate? Why? Test Value Glucose 83 BUN 14 Creatinine 0.7 Sodium 133 Potassium 6.1 Chloride 111 CO2 24
Two numbers are drawn, each in the range {0,1}. What is the probability that their sum...
Two numbers are drawn, each in the range {0,1}. What is the probability that their sum is less than 1 while their product is greater than 1/5?
1. Create a program that generates n values in range [low, high]. • Create a function...
1. Create a program that generates n values in range [low, high]. • Create a function generate_vals which takes as input an array of double values and three integers representing the size of the array, low value of range, and high value of range, respectively. The function should use rand() to generate the requested number of values. • Prompt the user to enter the size of their array as shown below. It cannot exceed a maximum size of 128. If...
Directions from assignment: Calculate the standard deviation for your data. Describe the range of values that...
Directions from assignment: Calculate the standard deviation for your data. Describe the range of values that are within 3 sigma of the mean and the impact it has on the likelihood of a value being in that range in terms of the variable chosen. My data is : 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15. I calculated the standard deviation as 4.3 and by using the calculated mean of 7.5. I do not know how to describel the range of values or what they are within...
1. Calculate the step values for the following ADC bit sizes over a range of 0...
1. Calculate the step values for the following ADC bit sizes over a range of 0 to 3.3v. a.4 Bit b.8 Bit c.10 Bit d.12 Bit 2.Calculate the step size for 4, 8, 10, and 12 Bit analog to digital conversation of the temperature sensor with a range of 90 to 100 degrees fahrenheit. 3.Identify the minimum ADC bit size that is needed to convert the temperature with one tenth of a degree accuracy.
Program – version 1: Sum of Range Algorithm Write a program that will sum the integers...
Program – version 1: Sum of Range Algorithm Write a program that will sum the integers between a given range (limit your range from 0 to 50). For example, if the user want to add the integers between (and including) 1 and 10, then the program should add: 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 Algorithm: Program title/description Ask the user to input a start value in the...
IN MATLAB, Create a 8x8 magic matrix. Then use MATLAB built in function, sum, to calculate...
IN MATLAB, Create a 8x8 magic matrix. Then use MATLAB built in function, sum, to calculate the sum of each column. Use subscript notation to find the 6th element and the last element of each magic square. Find the maximum of all the elements in each magic square.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT