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

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
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
The last one result will be shown if earlier criteria are not met
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,728
Messages
6,132,370
Members
449,721
Latest member
tcheretakis

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