Change cell value based on drop down menu

cbc818

New Member
Joined
Feb 17, 2018
Messages
4
Hello Everyone,

So I created a drop down menu with the days of the week on it. Now I want to be able to alter a cells data to read a time per each day.

=IF(K21="Friday","4:00pm")
This formula works and hypothetically I should just be able to repeat this a bunch of times but for some reason Excel doesn't like me and refuses to obey when I do this:

=IF(K21="Friday","4:00pm"),IF(K21="Saturday","3:00pm"),IF(K21="Sunday","2:00pm"),IF(K21="Monday","4:00pm"),IF(K21="Tuesday","4:00pm"),IF(K21="Wednesday","4:00pm"),IF(K21="Thursday","4:00pm")

Anyone have an ideas?
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Please use this:
=IF(K21="Friday","4:00pm",IF(K21="Saturday","3:00pm",IF(K21="Sunday","2:00pm",IF(K21="Monday","4:00pm",IF(K21="Tuesday","4:00pm",IF(K21="Wednesday","4:00pm","4:00pm"))))))
 
Upvote 0

Forum statistics

Threads
1,223,886
Messages
6,175,198
Members
452,616
Latest member
intern444

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top