Assignment Pro Help

Based on the values in Cells B77:B81, which function can automatically return the value in Cell C77?

Untitled

To automatically return the value in Cell C77 based on the values in Cells B77:B81, the best function to use depends on what relationship exists between these values.

Understanding the Data Structure

  • Column B (B77:B81) contains sales figures.

  • Cell C77 contains a single value ($721), which might be related to the values in Column B.

If you want to automatically return C77’s value based on a match from Column B, you can use a lookup function like INDEX and MATCH.

Using INDEX and MATCH

If you want to find the value in Column C that corresponds to a specific value in Column B, use this

=INDEX(C77:C81, MATCH(B77, B77:B81, 0))

How It Works

  • MATCH(B77, B77:B81, 0) finds the position of the value in B77 within the range B77:B81.

  • INDEX(C77:C81, … ) then returns the value in the same position from C77:C81.

Alternative: Using VLOOKUP

If the data is structured as a lookup table and you want to find the corresponding value in Column C, you can use:

=VLOOKUP(B77, B77:C81, 2, FALSE)

This formula searches for the value in B77 and returns the corresponding value from Column C.

Conclusion

If you want to retrieve C77’s value ($721) based on a match in B77:B81, use INDEX and MATCH for more flexibility. If the data is structured as a two-column lookup table, VLOOKUP can also work.