I have a workbook with several sheets. one of the sheets has several rows with items. I also have a second sheet also with items. Each of the items in sheet one has corresponding item in sheet 2. What I would like to do is when someone selects on a yes for the items on sheet one then the rows from sheet 2 of the same item are copied into a new workbook.
For example Sheet 1 would have
Code1 Apple yes/no
Code2 Banana yes/no
Code3 Mango yes/no
Where yes/no is a data validation input under column C
Sheet 2 would have
Code1 20032
Code2 30045
Code3 50098
So once a user makes a selection of yes/no on sheet 1 and clicks a button an excel workbook should be genrated with the rows from sheet 2 without those selected as No.
I tried to record a Macro using filters but since my sheet 2 has merged cells, the copying did not work well
Related
I have a sheet
which i have to compare it with my another sheets data
here i want to compare Column A from first sheet two Row 1 in second Sheet and mark the diffenece in both and highlight it.
I have 2 sheets in an Excel workbook.
The first one contains a data table named "details", regarding details of students. The second sheet contains several formulated cells with Vlookup formula which looks for vlaues in the first sheet.
How can I auto fill all the Vlookup cells in sheet 2, for a row from sheet 1, just by clicking on any cell of name column or order column from the first sheet?
E.g. my first sheet has these columns
order
student name
DOB
cast
1
Josheph
15/02/2017
Christian
2
Iliyas
23/05/2012
Muslim
I want to auto fill formulated (Vlookup) cells of the sheet 2, either by clicking "Joseph" or in the order column on "number 1".
I have 2 sheets in a excel file, sheet one has 287 rows and in sheet 2 there is 123 rows. The columns are the same in both sheets. How can I compare and see which rows in sheet 1 is not present in sheet 2?
New to VBA. I have three sheets: Sheet 1 and Sheet 2 track information for two different parts. Both sheets have a column named: "Set Number" where values range from 1-8. I'm trying to then extract ID Numbers (Cell(a9)downwards) of the parts with matching Set Numbers to Sheet 3.
On Sheet 3 Column 1 would pull from Sheet 1 and Column 2 would pull from Sheet 2 for Set 1; Columns 3 and for would do the same for Set 2, etc.
Appreciate any help.
I have a excel workbook with 3 sheets, sheet1 contains all the data which is split into remanning 2 sheets.
sheet1 data is updated on daily bases therefore i need to split sheet1 and update the reming two sheets, so at the moment i copy a each row from sheet1 and replace corresponding row in sheet2 or sheet3 with new data , each sheet contains the same columns: customer_id, customer_name, customer_surname, customer_deposit, total_deposits.
This requires so much manual work is there way where i can just automatically update a row in sheet2
and sheet3 with the data from sheet1.
Ps. The customer_id never changes so maybe there is a way i could use this t update the rows....?
If you only use sheet 2 & 3 for viewing the data then you can do something like this:
In sheet 2 set the formula for A1 to be
=(Sheet1!A1)
then drag the cell to the left (copying the formula) for however many columns you want. Then drag the higlighted cells down to copy the formula to all the desired cells. Then do the same on sheet 3 but starting at the point you want to split sheet 1. Then update sheet 1 and sheet 2 and 3 will automatically update.