Filter Based On 2 Inputs Or Option And Copy The Date To Next Sheet One After The Other

Sep 25, 2008

I have some data in sheet1 with 10 columns and 5000 rows.
I want to filter the data with 2 criterios.

When I go to 4th column and Click custom filter, I will give one criteria and select "or" and give another criteria. SO I will get the result in sheet1, I need to copy the data and paste the same in sheet 2 with the header.

The problem is, I need to filter more than 20 times giving the criteria and copy the result and paste in sheet 2 one after the other.

So i need a macro to solve this time consuming work.

I just paste the two criteria either in a text box or some cells and run the macro. the macro has to filter the data in sheet1 based on my input.( that is criteria1 or criteria 2) and the result should be pasted in sheet2 with the headers.
Again I delete the values in my input cell, and paste the new values, and run the macro, that result should be pasted after the first result, with the header. (would be great if that is pasted leaving one row above, that is if the first result is pasted in sheet 2 till 10th Row, then the send result should be pasted in 12th row and so on..

the similar kind of question with some changes, I posted in the below link with
http://www.excelforum.com/excel-prog...in-sheet2.html

View 9 Replies


ADVERTISEMENT

Vlookup On Dates And Generating Date Range Based Upon Inputs

Feb 13, 2014

I am attempting to find a way to search through a database I created based upon every day of the year. My goal is to have a user input a beginning date and end date for a trip, then my functions will return the range specified with each day and it's individual temperature average (in my database).

I also need generating the dates between the start and end dates that are entered by the user. I was considering combining Days360 with an Hlookup that searches through a massive sheet with all the dates for the upcoming year and then going down 1 in the column for the difference in the dates in each column.

Vlookup Help.xlsx

View 5 Replies View Related

Copy Sheet And Rename Based On Date

Dec 31, 2008

I have a spreadsheet that I enter daily totals into. The sheet is named by date.
I take totals from a number of catagories from the prior day's sheet (ending totals) and enter them on the current sheet (beginning totals), then enter the current day's totals to wind up with new ending totals.

I want to generate a new sheet in the same workbook based on the date of the prior sheet, copy my formatting, and copy the data from the old ending sheet totals to the new sheet beginning totals.

View 4 Replies View Related

Disable Copy / Paste Option For Particular Sheet?

Dec 8, 2013

I have workbook having 3 sheets out of them 1 sheet name "report". I want vba to disable copy /past option to sheet Report only with msg " copy not allowed" if key clt+c or copy option selected

View 1 Replies View Related

Copy Cells From Sheets Based On Date, Paste To Another Sheet

Oct 21, 2009

On sheet "CoA" i have at table of periodic payments that is created via an input form and what I want to do is have accounting entries automatically generated in my cask book based on dates.

The code for the input form is as follows;

View 14 Replies View Related

Copy Rows To New Sheet Based On Date Range Selected On A Form

May 8, 2009

This spreadsheet must perform calculations for every line since new items are added every day, so VBA is probably better than copying formulas down every line of the spreadsheet:

With the press of a button, I need to be able to select a range of dates and copy all lines within the range to a seperate sheet with the desired name under the same headings they currently reside under. I have included some modified code that is being used in another spreadsheet that was created for me, but I do not pretent to understand all of it and I no longer work with the creator of the spreadsheet. How do I use a button to open the form for date selections and entering the name of the new sheet, and then use the start button on the form to begin the matching and copying to a new sheet? If there is an easier way I am all for that too.

Also, I need to keep a total of all items by month as well as a monthly and annual average of the Total Item Value on the FY09 tab. This will eventually produce another sheet when a button is pressed to submit as a report. I think part of this answer is in using the MONTH(serial_number) function but I can only get this to work for a single cell. I need to search the entire Distribution 'D' column, match all the months to the FY09 tab to the respective month, and calculate the totals and averages. I think SUMIF may also be needed as well but need the MONTH(serial_number)to work first. If there is a way to code all of this in VBA that would be fine as well.

I have a pivot table on Sheet1 where I am trying to get the totals and averages described above but I am not sure it can do what I need. In column 'B' I need the total number of each item as well as the total number of all items. I tried various formats and adding the totals from the Totals tab but I have not figured it out.

View 7 Replies View Related

Copy Range As Paste As Values Based On UserForm Option Button Choice

Nov 3, 2009

I have a frame (Frame1) on a userform added using Microsoft Forms 2.0 Frame. I have added option buttons to the frame named OptionButton1 thru OptionButton4. I am trying to add code where certain cells are copied and pasted depending on which optbutton is selected. I tried the following code but because the option button is a frame object it doesn't seem to trigger the event.

Private Sub OptionButton1_Click()

'copy level 1
If Me.OptionButton1 = True Then
Worksheets("Sheet1").Range("G10:G32").Copy
Worksheets("Sheet1").Select
Worksheets("Sheet1").Range("C10:C32").Select
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=False
End If

End Sub

View 4 Replies View Related

Excel 2010 :: Copy Range Of Cells From One Sheet To Another Depending On Option Being Selected From Dropdown Box

Aug 13, 2012

Using macro's on Excel 2010. What I'm trying to do is create a macro that will copy a range of cells from one sheet to another depending on a option being selected from a drop down box. I've tried to use formulas but without success.
sheet 1 contains a list of approx 20 people with rows containing sales figures per week.

Is it possible to have a macro that will copy the rows to sheet2 depending on the dropdown? The drop down has already been setup with people's names

E.g.
if sheet 1, cell a1 (with data validation setup) dropdown contains "mr smith", copy sheet2 row A1:A9 to sheet 1 cell a2
or
if sheet 1, cell a1 dropdown contains "mr cooper", copy sheet2 row B1:B9 to sheet1 cell a2
etc... for each name in the dropdown

The idea is so that i select a dropdown and it copies the sales figures that match the dropdown name, if i then select another dropdown, the corresponding figures are copied to the same place.

View 3 Replies View Related

Filter Some Sheet Then Copy The Top Result To New Sheet?

May 19, 2014

When I synthesize the mark of the class, I'm trying to build a macro to copy the top 5 highest marks in each class into a new sheet (sheet: Total) to compare the mark of the class results (like the file I attach).

I finding the way like that:

Step1. the macro run filter with data sheets. then sort by largest to smallest

Step2. the macro copy 5 top of data sheets to the result sheet.

View 5 Replies View Related

Filter And Copy Value From One To Another Sheet

May 19, 2014

I want to copy the value equal 1 from sheet 1 to sheet 2 on the column name.

I attach the example: ask.xlsx‎

View 3 Replies View Related

Filter And Copy A Column To Different Sheet In VBA

Jul 24, 2012

i have attached a book with a column of data in it.

This column can change from month to month, i.e. it can contain more or less data.

I need to filter the column "Prog Provider" for "SIN" and copy all of the data to a new sheet.

This is a tiny sample as this usually contains over 25000 lines and I need to grab everything in col G related to SIN.

I attempted to record a macro, but as different data was put in it missed parts out!

View 4 Replies View Related

Filter Data On One Sheet And Copy To Another

Jul 27, 2006

Is there a way to easily filter the data according to the products' "index %" of a given month and then copying all data (including name, price, index%, and index value for the whole year) of those deviating from 100,0% to a new sheet?

I tried this myself with auto filters but the layout presented some problems. The sheet is created automatically by another programme, so the layout is what it is.

I really hope someone might have a solution for this since I need to sort through these sheets, with thousands of products, every month by hand!

View 9 Replies View Related

Filter Sheet Based On Another

Jan 25, 2008

i am trying to autofilter sheet1 based on the values from sheet2. i have coded and able to read the value from the other sheet but it reads value only for one row but not all rows... i guess i need to set the loop and i have no idea hw to set the loop. here is my code:

Dim datash As Worksheet
Dim CritSh As Worksheet
With ActiveWorkbook
Set datash = .Sheets("version") ' sheet to be filtered
Set CritSh = .Sheets("table") ' sheet from which the value is taken
End With
'DataSh.ShowAllData
datash. Cells.AutoFilter field:=1, Criteria1:="=" & CritSh.Range("A2").Value
datash.Cells.AutoFilter field:=2, Criteria1:="=" & CritSh.Range("B2").Value
datash.Cells.AutoFilter field:=3, Criteria1:="=" & CritSh.Range("C2").Value
..........................

View 9 Replies View Related

Macro To Copy Rows Based On Moving Date And Paste Rows Into Identical Sheet

Jan 28, 2014

I need to build a macro which copies 3 rows every day and pastes the row data into an identical sheet. The three rows will have column "D" as =today(). As the days progress the three rows will change accordingly ( tag to the today's date)

e.g. 28/1/2014
28/1/2014
28/1/2014

I need the macro to recognize the date when pressed and copy the corresponding rows of data and paste them into an identical sheet with the same date. The second sheet is an archive sheet. The date will tick over as per the calendar.

View 9 Replies View Related

Auto Filter Data & Copy To Another Sheet

Jan 2, 2010

macro which autofilter data & copy to another sheet.

below mention are the steps, i dont knw how to write vb code to autofilter month. Please find sample workbook on
below mention link
[url]

1.Auto Filter Date 2(Column C)

2.Select First Month (eg.May 09)

3.Auto Filter Date 1 (Column B)

4.from, the month, which filter in Date 2 (from May 09 to Dec 09..last month of year)

5.Auto Filter Column A

6.Copy each unique value on output sheet

View 9 Replies View Related

Copy Advance Filter Results To Another Sheet

Aug 29, 2007

I recorded a macro to perform an Advanced Filter. I then adapted the range to & LastRow. My question is, can this now be adapted to remove the Select so the sheets are not selected when this is run.

Sheets("CIT Results").Select
Sheets("Open Calls").Range("A1:I" & LastRow).AdvancedFilter Action:=xlFilterCopy, _
CriteriaRange:=Sheets("Open Calls").Range("N5:V8"), CopyToRange:=Range("Q50"), Unique:=False

Moderators, can you please edit the Thread title. It should be "Advance Filter From and To Non Active Sheet"

View 6 Replies View Related

Copy Auto Filter Range To Another Sheet

Jun 7, 2008

I want to filter the data: [the data I have In "Sheet1]"

Sub Makro5()
Selection.AutoFilter
Selection.AutoFilter Field:=1, Criteria1:="5"
Selection.AutoFilter Field:=2, Criteria1:="6"
Selection.AutoFilter Field:=3, Criteria1:="7"
Selection.AutoFilter Field:=4, Criteria1:="99"
End Sub

and now I want to copy from "Sheet1" to "Sheet2" but only Field:=4, where criteria1:="99"; In "Sheet2" I want to paste my filtered data to:

Range("B1,D1,F1,H1,J1,L1,N1,P1,R1,T1,V1,X1,Z1," & _
"AB1,AD1,AF1,AH1,AJ1,AL1,AN1,AP1,AR1,AT1,AV1,AX1,AZ1," & _
"BB1,BD1,BF1,BH1,BJ1,BL1,BN1,BP1,BR1,BT1,BV1,BX1,BZ1," & _
"CB1,CD1,CF1,CH1,CJ1,CL1,CN1,CP1,CR1,CT1,CV1,CX1,CZ1," & _
"DB1,DD1,DF1,DH1,DJ1,DL1,DN1,DP1,DR1,DT1,DV1,DX1,DZ1," & _
"EB1,ED1,EF1,EH1,EJ1,EL1,EN1,EP1,ER1,ET1,EV1,EX1,EZ1," & _
"FB1,FD1,FF1,FH1,FJ1,FL1,FN1,FP1,FR1,FT1,FV1,FX1,FZ1," & _
"GB1,GD1,GF1,GH1,GJ1,GL1,GN1,GP1,GR1,GT1,GV1,GX1,GZ1," & _
"HB1,HD1,HF1,HH1,HJ1,HL1,HN1,HP1,HR1,HT1,HV1,HX1,HZ1," & _
"IB1,ID1,IF1,IH1,IJ1,IL1,IN1,IP1,IR1,IT1,IV1")

View 2 Replies View Related

Composing Date From 3 Inputs

Mar 11, 2014

I'm trying to compose a date based on inputs from a userform. The user selects the day, month and year in combo boxes, and I want to place this data on a single cell in the format DD/MM/YYYY. How can I do this?

View 1 Replies View Related

VBA To Filter Pivot By Last Option In List

Sep 7, 2012

Any way to select the last option in a filter list for a pivot using VBA? I already have code to elminate certain critera that I don't want but there is a date column which will change and I will always want to select the last date in the list. Is there a way that I can get VBA to simply look in the filter options and select the last one?

View 9 Replies View Related

Filter Date Range Based On Cells

Jul 16, 2013

I would like to filter between a date range. the dates i need to filter between are in cells A1 and A2. this range contains the start and end of month. It is referenced from another sheet in the same workbook (='Job List'!C2).

i want to filter; greater than or equal to A1 and less than or equal to A2. How I can do it using the advanced filter method. My data range is C2:C9.

View 3 Replies View Related

How To Filter And Copy Data From One Sheet And Paste To New Worksheet

Jun 2, 2008

can excel do this (see the attachment pls). if possible can someone show me how to do that. i am new in excel vba.

View 9 Replies View Related

Filter, Copy Specific Columns, And Paste To Another Sheet.

Sep 27, 2009

Yeah it is 1:33 am where I am.

I'd like to filter a column and paste only 2 columns to another sheet in the first available row.
I found a code that was posted by Tom Ogilvy and made a few adjustments: ....

View 14 Replies View Related

Filter & Copy Based On ComboBox Choice

Nov 14, 2006

I have 2 work sheet

First sheet is "Department "
11 Departments

Second sheet is "Designation "
20 Designation

i have generated VBA form
but..now in this form i want to create 2 input options..

1)select department (capture all depts. from Department sheet. if i select HR Department then in 2nd option all HR Designation should be copied

View 4 Replies View Related

Restrict Inputs On Sheet

May 20, 2008

I have an excel sheet which acts as a form for multiple users, and I wanted to restrict the way certain cells can be filled in.

For example, if the value in Range E12:E100=PD then the values in Range B12:B100 must be blank. Is there anyway to do something like this?

View 9 Replies View Related

Completing IF Function With Date And Time As Inputs?

Jan 16, 2014

Using the attached doc, and its legend tab, I need the following columns corrected as I am seriously tripping up on formats vs inputs for outputs.

1.) Column "N's" result based on the duration output of the preceding column "M" is:

<=4 = 40
5 = 30
6 = 20
>=7 = 10

2.) Column "Q's" result based on the duration output of the preceding column "P" is:

<=18 == 40
>=19<=24 == 30
>=25<=48 == 20
>=49 == 10

The legend tab shows the info as well.

View 3 Replies View Related

Calendar That Inputs Date In A Specific Cell

Feb 8, 2009

I need the code to add the selected date to a specific cell lets say cell D8
at the moment it adds the date in any cell selected

View 4 Replies View Related

Values Based On Three Inputs?

Jan 27, 2014

Trying to look up values based on three inputs:

Attached is the file:

Month Input, Column Input and Network Input are changeable based on user input, I am trying to get the desired output based on selection from A20, B20, C20 into cells G20, G21, G22 from row number 2 and corresponding values in H20, H21, H22 from the corresponding row based on the selection.

I have populated an example in the attached file.

View 14 Replies View Related

Returning A Value Based On 3 Inputs?

Feb 27, 2014

I have 3 tables as per the attached samples (there is more but this is a sample for now).

In the table below these I have what I am trying to do. There is the manual input and the auto output based on the inputs.

e.g. if I input 12 in size, ball in type & A01B in piping class I hope to get the following output 20, 35, 51, 67, 83, 99 in the respective columns.

The formula needs to work across all three tables at the same time.

View 13 Replies View Related

Add Auto Filter (unique Records) Option To Macro

Dec 22, 2009

I have been modifying a workbook and the original macro will send to the sheet Results once the "Search" button is clicked, but I have found that this macro is displaying duplicate records. Can anyone help me put in an auto filter to find only unique records? My second workaround option is if someone can help me remove the go to/select sheet option from the "Search" macro so that a user will not automatically be sent to the Results tab and will instead hit the "Confirm Category Selection" button (which auto filters before sending the user to the Results tab).

View 12 Replies View Related

Automatically Filter Date Column Based On Dropdown Of Month

Sep 18, 2012

I want to be able to show only the dates whose months are selected in the drop down in cell A1. I've been able to do this with a Macro that I must run every time I change A1; however, I was wondering if there was a way to have the macro done automatically. I've been trying the Worksheet_Change options with little command. In addition to all of the If/Thens, I've also tried the If/ElseIfs as well:

VB:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$2" Then

If Target = "January" Then
ActiveSheet.Range("$A$2:$C$14").AutoFilter Field:=1, Criteria1:= _
xlFilterAllDatesInPeriodJanuary, Operator:=xlFilterDynamic

[Code] .....

View 1 Replies View Related







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