Drop Down List Excel

ziad alsayed

Well-known Member
Joined
Jul 17, 2010
Messages
665
Dear all

I am using a drop Down List that has 3 options "Normal","N/A" and "RedWings", it is named "Safety" in the name manager.
the issue i am facing is the i do not know the number of row i will be using, so i dont want to select range and add to drop down list to it.

is there a way let say if i add data to a new row it will automacilly add the drop down in colmun D and i will choose from the 3 options.
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Say you have a dropdown in D1 and D2. If you insert a row at row 2 a dropdown will also appear in the new D2, so now you have dropdowns in D1:D3. At least that's what happened for me in Excel 2003.
 
Upvote 0
dear andrew


i am using excel 2010, my drop drow is only in column D, i only use it for some cells in column D, i do not know how many cells i will be using in this column,
let say i used the drop down in column D for 5 cells, so normaly it will not appear in row 6 ( cell D6). now let i added some data in row 6 , i want it to appear automatically in D6 and i will choose from the options.

it is not the sames you faced , but thanks for the reply.
 
Upvote 0
You may give a name to the range to D1:D5, e.g. "DropDownList"
then in the validation, enter the named range instead of D1:D5
Create a macro in the Sheet Change Event in ThisWorkbook:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Range("D1").CurrentRegion.Name = "DropDownList"
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,558
Messages
6,179,512
Members
452,920
Latest member
jaspers

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