Share via

Lists or tables?

Anonymous
2024-11-11T19:28:28+00:00

I have two columns of numbers. column "a" is size and column "b" is temperature. I want to be able to enter a value in column "c" that corresponds to column "a" (size) and populate column "d" with associated value in column "b" (temperature). Any help would be much appreciated.

Microsoft 365 and Office | Excel | For education | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

1 answer

Sort by: Most helpful
  1. HansV 462.6K Reputation points
    2024-11-11T19:39:05+00:00

    Let's say the data in columns A and B are in A2:B100.

    In D2:

    =XLOOKUP(C2, $A$2:$A$100, $B$2:$B$100, "")

    Fill down.

    Was this answer helpful?

    0 comments No comments