Worksheet change event_event on based on null value

punnu07

New Member
Joined
Apr 19, 2015
Messages
34
Hi,

I have the following 4 columns in an excel file. In column Status I have different drop down values like Completed pending, to review etc.

Now my problem is if final review issued date is blank, then user shouldn't be able to select the status "Completed" from drop down in status column and a error message should pop up.

Final Review IssuedRisk EngineerUnderwriterStatus

<tbody>
</tbody>


Thanks in advance.
 
No files are allowed to be posted in this forum. What Takae and I are trying to do is to change the validation so that it will not show Competed in the validation list.
You can try using this formula in your validation in column O like this

IF($L$1<>"",$S$1:$S$3,$S$2:$S$3)

where S1:S3 contains your validation list Completed,Pending and Review respectively.

Change to suit your needs.
 
Upvote 0

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
I don't know what is happening but validation is not picking up both list together means if I entered date in column L, then i am able to see the list for all options but as soon as i delete that date from the cell, i am not getting list for that. I have created 2 lists one for if date is entered and one for if date is not entered. Am i doing something wrong?
 
Upvote 0
From your description, there don't seem to be anything wrong.
Did you select the range in your validation correctly?
What formula did you use? Try removing the $ sign from the L1
IF(L1<>"",$S$1:$S$3,$S$2:$S$3)
 
Last edited:
Upvote 0
Got It. Some VBA coding done on the column was not letting the things to happended. Now it is working. Thank you Sunny for your help. Thank you very much:)
 
Upvote 0

Forum statistics

Threads
1,215,580
Messages
6,125,654
Members
449,245
Latest member
PatrickL

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