How to get results from a different table/sheet that dynamically changes.

GinoSanPascual

New Member
Joined
Jun 5, 2013
Messages
1
Hello,

I have tried the search engine and I don't think I have worded my issue correctly. Pardon my English as it is not my first language.

I'll explain what I have and what I need.

What I have.
1. I have a workbook where it contains several sheets.
2. The first sheet will contain results from all the other sheets. Let's call the first sheet as the ReportPage*
3. Lets say the remaining sheets besides the ReportPage* are called Sprint1, Sprint2, Sprint3 and so on.
4. The ReportPage is a dynamic table.
5. The Sprint1 , Sprint2..etc, will contain 2 important Columns Lets name these Columns as Data* - Column A and Results* - Column B
Note : The Data and Results column are related to each other . so Data == Results.
6.
The Sprint1, Sprint2..etc sheets, will have a cell that has the name of the sheet. Example : Cell A1 = Sprint 1.

What I need, badly.
1.
The ReportPage* should contain the following.
  • A Column that will contain the Data
  • Columns for every Sprint*(Sprint 1, Sprint 2 sheets. this Sprint Sheets can go upto 20 or more) - In this issue, we can use the Cell A1 = Sprint
  • Here's the kicker, For the Column Data* the information should be collected from the Sprint* Sheets, and every Data* this will show the Results on the Sprint* Columns

Example
ReportPage
DataSprint 1 (these are the sheets)Sprint 2 (these are the sheets)
Example Data 1Results 1Results 1
Example Data 2Results 2

<tbody>
</tbody>

Sprint 1 sheet
Cell A1 = Sprint 1
DataResultsNotes:
Example Data 1Results 1blah blah
Example Data 3Results 3

<tbody>
</tbody>

Sprint 2 sheet
Cell A1 = Sprint 2
DataResultsNotes:
Example Data 2Results 2blah blah

<tbody>
</tbody>


Is there a way to do this?
Thank you for the help!

-Gino

P.S Sorry if my question is unclear.

<tbody>
</tbody>

 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
This procedure assumes that you have established the worksheets with the headers in row one and the data down column A. It further assumes that the headers in the Report sheet are the sheet names for all the sheets containing the data and the results. The code will evaluate each sheet in the workbook one at a time. It will locate the appropriate column on the report sheet by searching for a match to the name in cell A1 of each sheet. It will then evaluate each cell in column a of the data sheets to determine if column B contains data. If column B is not blank, it will find the matching data in column A or the Report sheet to determine the appropriate row for entry, it will then use the column and row information of the Report sheet to copy the data in column B to the appropriate cell on the Report sheet. At least it worked that way in the test set up.
Code:
Sub report()
Dim sh As Worksheet, dSh As Worksheet, lr As Long, rng As Range
Dim fCol As Range, col As Long, fRw As Range, rw As Long
Set sh = Sheets("Report")
    For Each dSh In ThisWorkbook.Sheets
        If dSh.Name <> "Report" Then
            Set fCol = sh.Rows(1).Find(dSh.Range("A1").Value, LookIn:=xlValues)
                If fCol Is Nothing Then                    
                    MsgBox "Sheet Name not found on Report Sheet", vbCritical, "ALERT"
                    Exit Sub
                End If
            col = fCol.Column
            lr = dSh.Cells(Rows.Count, 1).End(xlUp).Row
            Set rng = dSh.Range("A2:A" & lr)
            For Each c In rng
                If c.Offset(0, 1) <> "" Then
                    Set fRw = sh.Range("A:A").Find(c.Value, LookIn:=xlValues)
                        If Not fRw Is Nothing Then
                            rw = fRw.Row
                            c.Offset(0, 1).Copy sh.Cells(rw, col)
                        End If
                End If
            Next
        End If
    Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,968
Messages
6,127,983
Members
449,414
Latest member
sameri

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