Dear Naresh,

See attached sheet..................

Try it........

*Sub Consodilate_Macro()
st_name = Sheets.Count
Sheets.Add After:=Sheets(Sheets.Count)
ActiveSheet.Name = "Consodilated Sheet"
Sheets(Sheets.Count).Range("A1") = "Name"
Sheets(Sheets.Count).Range("B1") = "Result"
Sheets(Sheets.Count).Range("C1") = "%Marks"
For i = 1 To st_name
Sheets(i).Select
j = 2
k = ActiveSheet.UsedRange.Rows.Count
Rows(j & ":" & k).Copy
Sheets(Sheets.Count).Select
Sheets(Sheets.Count).Range("a65356").End(xlUp).Offset(1, 0).Select
ActiveSheet.Paste
Next i
Sheets(Sheets.Count).Activate
End Sub

*
On Wed, Sep 14, 2011 at 2:54 PM, naresh v <naresh.veerabo...@gmail.com>wrote:

> Hi Team,
>
> I have a query, can you please tell me…
>
> Q: How to link data from different sheets to one sheet ?
> Ex: In attached excel there are 6 sheets.
> Sheet1, Sheet2, Sheet3, Sheet4, Sheet5 and consolidated sheet.
> I want to pull data into consolidate sheet from sheet1 to sheet5.
> I have shown in the attached excel.
>
>
>
>
>
> Thanks and Regards,
> Naresh V,
>
> --
>
> ----------------------------------------------------------------------------------
> Some important links for excel users:
> 1. Follow us on TWITTER for tips tricks and links :
> http://twitter.com/exceldailytip
> 2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> Like our page on facebook , Just follow below link
> http://www.facebook.com/discussexcel
>



-- 
Thanks & regards,
Noorain Ansari
 *http://excelmacroworld.blogspot.com/*<http://excelmacroworld.blogspot.com/>
*http://noorain-ansari.blogspot.com/* <http://noorain-ansari.blogspot.com/>

-- 
----------------------------------------------------------------------------------
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com

<><><><><><><><><><><><><><><><><><><><><><>
Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel

Attachment: sheet1(Solved).xlsm
Description: Binary data

Reply via email to