Cell format

one_more_cave_dweller

Board Regular
Joined
Sep 27, 2004
Messages
118
Is it possible to format one cell to only allow a user to enter a value based on the contents of another cell. For example cell A2 would not let you enter a value unless cell A1 said January.

Thanks :pray:
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Put this in the sheet module:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Intersect(Target, [a1:a2]) Is Nothing Then Exit Sub
    If UCase([a1]) <> "JANUARY" Then [a2].ClearContents
    
End Sub

Note: The code ensures that if `January' is subsequently deleted or changed, A2 is cleared.
 
Upvote 0
In A2 you can use Data-->Validation-->Custom-->Formula-->=A1="January"

Note that you only get 3 shots per cell with Data Validation, so that may be an issue with 12 months... :wink:

Post back if that doesn't fit your bill.

HTH,

Smitty
 
Upvote 0
Do the validation the same way, but change the formula to:

=OR(A1="January",A1="February")
(Add conditions as necessary. Didn't try it, but you should be able to have up to 30.)

Isn't that cool? You come up with some neat stuff, Smitty!
 
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,572
Members
448,972
Latest member
Shantanu2024

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