You can make a difference in the Apple Support Community!

When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.

Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

Apple numbers

Does anyone know how to make a drop down menu auto fill other cells. Ie if cell A1 = David A4-A6 would automatically fill in contact info for that person

Ty

iMac 27″, macOS 10.12

Posted on Mar 3, 2021 7:19 PM

Reply
Question marked as Top-ranking reply

Posted on Mar 3, 2021 8:31 PM

In general it sounds as if you need to do what's called a "lookup." Based on what you enter in A1 you look up the information for A4:A6 from another table. One way is to use the XLOOKUP function, something like this:




Formula in A4: =XLOOKUP(A$1,Info::$A,Info::B,"Not found")

Formula in A5: =XLOOKUP(A$1,Info::$A,Info::C,"Not found")

Formula in A6: =XLOOKUP(A$1,Info::$A,Info::D,"Not found")


Substitute ; for , in the formulas if your regions uses , as a decimal separator.


More on XLOOKUP here.




SG

3 replies
Question marked as Top-ranking reply

Mar 3, 2021 8:31 PM in response to Franchuk3581

In general it sounds as if you need to do what's called a "lookup." Based on what you enter in A1 you look up the information for A4:A6 from another table. One way is to use the XLOOKUP function, something like this:




Formula in A4: =XLOOKUP(A$1,Info::$A,Info::B,"Not found")

Formula in A5: =XLOOKUP(A$1,Info::$A,Info::C,"Not found")

Formula in A6: =XLOOKUP(A$1,Info::$A,Info::D,"Not found")


Substitute ; for , in the formulas if your regions uses , as a decimal separator.


More on XLOOKUP here.




SG

Apple numbers

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.