Forum Discussion
Alex_Karras
Oct 16, 2019Copper Contributor
Excel formula help
Hi, new and need help with a formula..... If in cell A1 I create a drop down menu such as Monday to Friday. Then i need a formula in cell B1 that will display whatever the data is in cell C1 if Monda...
Alex_Karras
Oct 17, 2019Copper Contributor
Thank you all very much with your help, much appreciated.
Twifoo
Oct 17, 2019Silver Contributor
You may also use LOOKUP like this:
=LOOKUP(2,1/(
{"Monday";"Tuesday";"Wednesday";"Thursday";"Friday"}=A1),
C$1:C$5)