Index match across multiple sheets to pull data - excel-formula

In the attached workbook there is about 5 sheets, i'm using this formula to extract all unique records in column (A) only in sheet (5).
=IFERROR(INDEX('1'!A1:A7,MATCH(0,INDEX(COUNTIF(A1:$A$1,'1'!A1:A7&""),0),0)),"")
I need formula to get all records from column A from all sheets at once.
Attached file
I tried indirect but faild.

Related

Pull data from multiple sheets

I'm trying to write a Macro/VBA that will pull certain data from different sheets, ( Basically 12 Sheets a separate sheet for each Month ) into a different sheet. I'm not sure where to start.
The Macro will need to be able to look through the rows in the 12 sheets and pull the necessary cells that meet the following criteria: I have a particular column named as category, if there is a cell with the value debtors in that column I would like to pull that data to the final sheet named debtors. I am attaching a sample Excel for your reference.https://drive.google.com/file/d/1rJxNdHxXtKGHjMKIozrbV3UN4hpDpIec/view?usp=sharing
Is there a way to accomplish this?

Copying Data Based on matched column headers

I have two workbooks. Once contains dynamic data which is updated on a weekly basis (dynamic pivot table). The other contains a master sheet within which this data needs to be inputted.
Within VBA, how can i copy and paste the data based on a match on the headers? The two tables have the same headers (being dates). Sheet one has headers located starting from cell G6 and this increases on a weekly basis as new dates added.
i would like to write a macro which will copy and paste the data from one workbook to another if the two headers match.
Kind regards
D
Here you can find how to copy from one workbook to another : excel Campus
Then all you have to do is to check if some columns match and get the cells range you want to copy.
Here you can find some informations about column names and some actions with them : Stackoverflow/ Get column name
Hope it helps.
Best regards.

How to merge two excel sheets by patient ID without excluding duplicate data

I want to merge two data sheets by patient ID including all data. Is there an easy way to combine two excel sheets and create one data file in excel.
Sheet 1 is in the left side and sheet 2 is in the right side.
You can use Manthan Patel's Vlookup method if you create a unique ID on both sheets. You can create a dummy ID by inserting a column to the left of your ID and then use
=B2 & "-" & countif($B$2:B2,B2)
in cell A2 and then auto-fill down. You will then have a unique ID for each row that you can use a vlookup on to get the data onto sheet2. The ID will be 1-1, 1-2, 2-1,
The limitation will be if Sheet2 has less rows for a particular patient ID than Sheet1 so you need to also think about the output that you are trying to acheive when you merge the sheets.

How do I add a blank subtotal row after each different value in a specific column in data that has been filtered with an advanced filter?

I am getting an Excel 2010 Workbook with chunks of data. There are a variable number of blank rows between each chunk of data. Here's what I do with the data using macros:
I copy the data from the source workbook into a workbook with my macros.
I remove the blank rows.
I then sort the data with 4 sort criteria.
I then use an advanced filter to extract 6 of the 26 different types of data.
I then use the VBA code within a macro found here: How to automatically insert a blank row after a group of data to add a blank row after each unique value in Column A, but I am getting numerous blank rows as it appears to be adding a blank rows based on the original data, not the filtered data:
What I need is a way to add a blank row after each unique value in column A after the data is filtered to add sub-totals and counts.
You might copy the filtered data to a separate spreadsheet tab then do the insert.
Otherwise you will have to use the SpecialCells property mentioned above, which is much more complex.

Excel VLookup based on two variables across 3 sheets

I am trying to sum the totals of data stored in 3 sheets based on 2 variables into a summary sheet (ie. a forth sheet).
I want to match both the place name and the week number for each place on the summary sheet.
On the Summary table we have at the top the week number we want to use. A list of places in column A and the number of visits in column B.
THis formula worked.
=SUMIFS(ND!$V$3:$V$4000,ND!$F$3:$F$4000,TEST!$A$1,ND!$B$3:$B$4000,TEST!A3)
In column B of the summary sheet for each row. However it only looks up data from one sheet not all 3. I tried this but it causes an error:
=SUMIFS(AND(ND!$V$3:$V$4000,GK!$V$3:$V$4000,TW!$W$3:$W$4000),AND(ND!$F$3:$F$4000,GK!$F$3:$F$4000,TW!$F$3:$F$4000),TEST!$A$1,AND(ND!$B$3:$B$4000,GK!$B$3:$B$4000,TW!$B$3:$B$4000),TEST!A3)
How do we get it to work.
Could you just use the formula
=SUMIFS(ND!$V$3:$V$4000,ND!$F$3:$F$4000,TEST!$A$1,ND!$B$3:$B$4000,TEST!A3)
3 times like
=SUMIFS(ND!$V$3:$V$4000,ND!$F$3:$F$4000,TEST!$A$1,ND!$B$3:$B$4000,TEST!A3)+SUMIFS(GK!$V$3:$V$4000,GK!$F$3:$F$4000,TEST!$A$1,GK!$B$3:$B$4000,TEST!A3)+SUMIFS(GW!$V$3:$V$4000,GW!$F$3:$F$4000,TEST!$A$1,GW!$B$3:$B$4000,TEST!A3)

Resources