Worksheet Macro Using Dropdown List

Aug 5, 2014

I am trying to build my first worksheet macro. I have a dropdown list in a worksheet "Active Email" with "Yes" and 'No". When Yes is selected I want to cut that entire row and paste it in worksheet "Archived Emails". I feel I am close with the code but when I select the word from the dropdown, nothing happens.

Here is what I have so far.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 5 Then
If UCase(Target.Value) = "Yes" Then
Target.EntireRow.Copy Destination:=Sheets("Archived Emails"). _
Range("A" & Rows.Count).End(xlUp).Offset(1)
Target.EntireRow.Delete
End If
End If
End Sub

View 2 Replies


ADVERTISEMENT

Macro To PDF Worksheet From Dropdown List?

Jan 12, 2013

I have a workbook that has 20 or so sheets that all roll into a summary statement via vlookups/sumifs/and other formuals.

Currently have around 300 vendors that need to have statements PDF'd which I currently do one-by-one.

Input range: VendorCounts$B$2:$B$1500
Cell Link: $C$1

Print area: A3:P437

Would like to PDF from print area each of the vendors in the drop-down list and save file to a designated location with the file name being the vendor name in the drop down window.

View 8 Replies View Related

Create A Dropdown List From Another Worksheet

Nov 3, 2008

I am trying to figure out how to create a drop down list on one page of a workbook with the list of items for the drop down list located on a separate worksheet within the same workbook.

I have a workbook with one spreadsheet with a list of items on it (sheet1/ingredients) and the rest of the worksheets would have the drop down list of items from sheet1/ingredients.

I have been trying to use the validation method with no luck - I just can't seem to get the source path right.

If possible I would also like the drop down list of ingredients to be self updating - the ability to continue to add items to the list and show up in the drop down lists.

When the value in the drop down window is selected I would really like / need to have the data populated in the rows to the right of the drop down window.

While asking is there any sort of auto complete so that one can start typing in the box and the ingredients that start with those letters show up to select from? (Such as if type EVA or EVAP --- then all words starting with EVA or EVAP appear instead of the entire list?)

View 14 Replies View Related

Copy Data To Worksheet From Dropdown List

Apr 5, 2013

I have a grade book with 17 worksheets 1 for each subject = each of the sheets are identical with the students names in col B and the data is entered manually in the corresponding cols along side the names.

What I would like is a vba solution to enter the data in a worksheet called 'datainput' = which would be identical in layout as the above subject sheets= and by the use of a drop down list with the names of the 17 subject sheets = copy the data in the 'datatinput' worksheet into the next available blank col in the worksheet selected from the drop down list=and with a command button erase the data in the 'datainput' worksheet ready to enter new data.

View 9 Replies View Related

Dropdown List Triggers Worksheet Change

Apr 26, 2007

Trying to create a dropdown list to navigate to another worksheet . I tried iterations of the following code but am getting an 'object required' error.

If I can't assign the result to a string, how can I change the worksheet from the result of the dropdown list?

Sub DropDown7_Change()
Dim temp As String
temp = ActiveDocument.FormFields(“DropDown7”).Result
Sheets(temp).Select
End Sub

View 9 Replies View Related

Automatically Color Worksheet Tab Based On Dropdown List Selection

Nov 21, 2012

I am new to VB macros, I am trying to figure out how to color a tab Green based on a selection from a drop down list.

View 9 Replies View Related

Autofilter Data Based On Cell Value (dropdown List) In Different Worksheet?

Apr 5, 2013

I've created drop-down lists in cells B3 and B4 (this is in worksheet 1), based on a column in Worksheet 2. I'd like Worksheet 2 to autofilter the data based on the drop-downs in B3 or B4, or both together.

View 2 Replies View Related

Dropdown List Displaying Multiple Results - No Functionality If Worksheet Is Protected

Nov 28, 2013

I wanted to create a multiple drop down lists (using data validation) in column B (50 in all, every 3rd line) whereby, multiple, comma deliminated, results would display in each of the cells - for use elsewhere in the spreadsheet.

I found some code (as follows) which worked perfectly for me

VB:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rngDV As Range
Dim oldVal As String

[Code].....

As I mentioned above, I don't really understand the code and all I know is that the line about halfway down "If Target.Column = 2 Then" is defining which column (B) this will work in.

The problem I am having is that I need to protect the worksheet and the moment I "protect" the worksheet, the functionality of displaying multiple values goes away and the drop-down list reverts to only displaying one of the available values.

View 9 Replies View Related

How To Set Worksheet To Auto Input Number When Item Selected From Dropdown List

Dec 6, 2012

I have a drop down box on a worksheet and once I have selected the item I want from the list, I would like the price of that item to appear in the cell next to it..

View 2 Replies View Related

Create Dropdown List Using Data From Different Worksheet And Auto-populate Remaining?

Sep 11, 2013

I have two worksheet. One worksheet is a form where in the Field Door No. should be a dropdown list. The list will be retrieve from worksheet Source. Now upon selecting a specific Door No. it should also autopopulate the respective Type, Brand, Serial No., and Type.

First thing i need to know is what should i do on Cell B1 worksheet Form for it to be a drop down list retrieving the Column A on worksheet Source.

Second, upon selecting for example ATC0009 on the drop-down, it should auto-populate like these

Door No. ATC0009
Type AT Crane
Brand A
Serial 43679
Type Crane

View 14 Replies View Related

Creating Dropdown List To Customize Worksheet Based On Country Selected

Aug 16, 2013

I have a product list where each row of the worksheet has an image, product details and suggested lists/retails for each local currency.

Some products are not available in certain countries and each market doesn't care to see the other market info. (There are hundreds of items and dozens of countries.)

How can I create a drop down selector so that a user can choose their market, i.e. "Australia," and only the rows and columns relevant to them appear?

Can this be done without macros,? This sheet is distributed among 100+ people and needs to work for lowest common denominator.

View 3 Replies View Related

VLOOKUP Query (produce A Dropdown List Of These Items For Use Within The Pricing Sheet Worksheet )

Mar 27, 2009

I have attached a sample workbook, (Pricing Sheet - Major) within this work book there is a worksheet entitled Price Book which has commonly-used materials, unit prices and labour rates. What he wishes to do is use the contents of the Price Book worksheet within a worksheet called Pricing Sheet to enable him to prepare quotations.

I had the idea to first sort the items in the Price Book worksheet and then produce a dropdown list of these items for use within the Pricing Sheet worksheet and used the VLOOKUP function to obtain the values for unit prices and labour within the Price Book and use them in the Pricing Sheet worksheet.

View 5 Replies View Related

Dropdown List Macro Activate

Dec 4, 2007

I have code to do what I need to do currently but it only works for one cell. If I try to get it to copy down through a range it loops endlessly back and forth between two values. I am sure that there is an easy way of accomplishing this. I would appreciate anyones help or suggstions. Thanks.

Here is the code that I am using on the worksheet

View 9 Replies View Related

Running Macro From Dropdown List

Feb 8, 2013

I actually have a two part question of which I am sure the answer to the first question is no.

Can I create a drop-down list from a series of cells that has a blank cell or two in the middle?

DROP DOWN CELLS
Option 1
Option 2

Option 3
Option 4

How can I execute a macro once a selection is made from a drop-down list?

View 4 Replies View Related

Macro Based On Dropdown List

Jun 24, 2009

I am trying to improve a process for someone in my workgroup to save a lot of time when reporting performance.

I have a spreadsheet with a drop down list of names. When I select a name from the drop down list I would like to copy a range of values on another sheet and paste special value a few columns over on the same sheet. I would like to have this only happen for the range of vaules on the row that correspondes with the name that I selected from the drop down list on the original sheet.

View 9 Replies View Related

How To Assign Macro To Item On Dropdown List

May 30, 2014

I created a drop down list (of various Input Groups) and I need to show the selected group's responsibilities on a separate sheet; is there an easy way to do this?

View 2 Replies View Related

Macro To Inform If A Value In A Dropdown List Equals

Aug 8, 2007

I would like to know if I can set a formula or macro to say that if a value in a dropdown list equals, lets say "Business", then show this list of value in a dropdown list in this cell.

View 10 Replies View Related

Two Column Dropdown List In Combobox Macro

Mar 19, 2009

I want to make my combobox will view 2 column of list and in the textbox will view "criteria" of sellected item.

View 4 Replies View Related

Macro To Set Automatically Select Value From Dropdown List?

Mar 22, 2014

I am in need of a Macro that does the following:

In cell B4 I have data validation drop down list which refers to the range of values named Tarifalist. Tarifalist list has the following range of values: 01,1A-1F / DAC / 02 / OM / HM / 5A (Baja) / 5 (Baja) / 03

In cell B5 I have a data validation drop down list with =IF(OR($B$4="03",$B$4="OM",$B$4="HM"),Thirty,ThirtySixty) Where range Thirty has the value 30, and ThirtySixty has values 30 and 60

I would like in addition, a Macro which when either 03, HM, or OM is selected in cell B4, that it automatically sets the value to 30 in cell B5. The purpose is so that the input is foolproof, and no user can accidentally leave the value at 60. As of now, if the value has been left at 60, and 03, HM, or OM is selected in B4, B5 can stay at 60, which is not a valid input and must be manually changed.

View 2 Replies View Related

Macro To Strikethrough Row Dependent Of Cell Value In Dropdown List

Jul 16, 2008

Is it possible to have a worksheet code that would underline a row if a certain value is selected in a dropdown list?

I have a worksheet with data populated across colums A to K, in Column I there is a dropdown list. What I wanted was to be able to understrike the Columns A to K of a particular row is the value in the dropdown list in Column I ="Cancelled". I cannot use Conditional Formatting as I have already used the maximum 3 formats for other features.

View 9 Replies View Related

Macro For Copying A Row From One Sheet To Other On Selection Of Dropdown List

Feb 20, 2009

I am working on Excel document(Microsoft office-2007) with 2 sheets(Sheet1,Sheet2).
In sheet1 i have a dropdown list and the respective data is saved in Sheet2.On selection of dropdown lists in sheet1 ,respective rows should get copied from Sheet2 to Sheet1.

I am having trouble with the macro command. This is a first for me and I am stuck. I just dont know the how to write the Macro for this.

View 9 Replies View Related

Hide Combobox Dropdown List During Long Macro

Mar 4, 2008

I've done some looking around in the object browser and in the forum, but i wasn't able to find the answer to this question:

I've got a combobox (dropdown list) in a userform which i use to run macros. soft of them are fairly long (2-3seconds), and during that time the dropdown list remains visible.... is there a way to force hide it?

View 6 Replies View Related

Macro Print Invoice After Choosing Sheet From Dropdown List

May 1, 2014

with the following....In the first sheet of attached file I keep data regarding all invoice sheets next to the data sheet (not visible in this example). I like to print an invoice in all sheets (area H3-AI43) from a selected invoice sheet out of a drop-downlist in the "data"sheet. After printing the actual printdate must be placed in column F of the "data" sheet next to the sheet number. Would be great if this is possible! Maybe I'm not clear enough. The purpose is to print only 1 invoice from a selected sheet out of the drop-down list.....and not all invoices from all sheets!

View 4 Replies View Related

Macro - Choose From Dropdown List Then Copy Page To New Sheet

Jan 3, 2013

I am after some VBA code that chooses each value from a drop down list (in cell A1) then copies a separate sheet 1 (sheet 1) into another workbook (can have both workbooks open at the same time or the first step will have to create a workbook) with the name of the added sheet renamed to the value chosen from the list. When the second value is chosen then sheet 1 should be copied into the newly created workbook as well.

Sheet 1 has lookups that are updated when the new value in the drop down list is chosen

There are around 85 values in the drop down list so I'm expecting a workbook with 85 tabs (copy pasted values and formats)

View 1 Replies View Related

Macro Delete Submit Button When Item Selected From Dropdown List

Mar 4, 2014

I have an excel form with a command (submit) button that opens up Outlook when clicked. I am looking for a way to have this submit button disappear when the user selects a specific item in a drop down list to make sure they do not email the form when it is used for a promotion (Promotion would be selected in the drop down).

View 8 Replies View Related

Macro To Jump To Cell That Matches Text Selected From A Dropdown List?

Mar 24, 2014

I'm looking for a macro to jump to and select a cell if it matches the text in another cell based on a drop down list. So I have a drop down list in cell c57 and a form control search button right next to it. I want the user to be able to select from the drop down, click search and then jump to the cell that matches what they selected. I would like the macro to search from B:60 - B629.

View 4 Replies View Related

Macro To Copy Dropdown List Created In Cell O2 And Then Paste In Same Sheet

Feb 12, 2014

I am trying to write a simple macro to copy a drop down list I created in cell O2 and then paste in the same sheet. I need it to paste starting in cell A2 and then move to A4 and so on for every even row cell through A9778. I would also like it to keep a border around the cell. I can't find direction on how to tell it every even cell or defining x and then doing x + 1...

View 3 Replies View Related

Worksheet Change Macro Takes Too Much Time When Run With Update List Macro

Feb 1, 2009

I have a worksheet in which I have a worksheet_change macro. This worksheet_change macro makes sure that a few cells will keep their colors, even if the user copies and pastes a new value to that cell. This worksheet_change macro runs each time there is a change on the worksheet. Now my problem is that on the same sheet I have an update list macro which updates around 20.000 rows and two columns (which is alltogether around 40.000 values) and it takes a while to run. So.. it takes a loooooooooot of time (too much) when these two macros both run.

My question is that can I somehow disable the worksheet_change macro while the update list macro runs. I mean something like when I start the update list macro to disable worksheet_change macro and when the update list macro finishes, then reenable worksheet_change macro?

View 5 Replies View Related

Creating A Dropdown List Using Matching Data From 2 Columns To Populate The List

Jun 11, 2013

I'm creating a spreadsheet to keep track of my costs of production in an online game. Within the game there are a range of spawned resources that appear for only a short time before being unobtainable these resources have specific types that is shared between multiple spawns of the resource but each resource spawn has a unique name.

My first worksheet lists all the resources and their various qualities and the later worksheets are meant to allow me to choose from a list resources matching the requirements of the item I'm looking to craft. The example i have shown in the second picture requires Tatooinian Fiberplast and Lokian Wild Wheat to craft so in the Chosen Resource column I would like to have a drop down list allowing me to select the named resource type i would like to use - for Tatooinian Fiberplast the only thing on the list should be Omnitwixi and for the Wild Wheat it should show Fizi and Krad

[URL]....

[URL]....

I am aware there are people with more pressing problems than computer games and as such

View 7 Replies View Related

Dropdown List From Comma Delimited List In Single Cell

May 9, 2014

Is there a way to create a drop down list from a comma delimited list in a single cell? For example, col A is Name & Col B is the delimited list - Blue,Red,Green (list can be different for each name). Would like a drop down list in col C that allows you to pick one of the values from Col B.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved