Ask Question

Use the AND function with appropriate arguments in cell H11 to determine if there is a force out at third base. There is a force out at third base if "Runner on 1st" and "Runner on 2nd" are both "Yes".

+1
Answers (1)
  1. 25 April, 14:18
    0
    =AND ($C11 = "Yes", $D11 = "Yes")

    Explanation:

    The AND function takes conditional inputs and tests if each of them are TRUE. If all of the inputs are TRUE, the function will output TRUE but if any one of them are not the function will output FALSE. This scales to multiple inputs but this example only has two conditions. It is important to remember that we want to compare a string so our condition must be "Yes", not just Yes.

    We also use a relative cell reference, "$", on the columns C and D since we always want to use the "Runner on 1st" and "Runner on 2nd" columns.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Use the AND function with appropriate arguments in cell H11 to determine if there is a force out at third base. There is a force out at ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers