From: Sarah on 1 Apr 2010 11:49 I have a large range of data that I would like to pull information from based on several factors. There may be more then one outcome. Is there anyway to pull that information and put it in a table on a different worksheet?
From: Don Guillett on 1 Apr 2010 12:02 If desired, send your file to my address below. I will only look if: 1. You send a copy of this message on an inserted sheet 2. You give me the newsgroup and the subject line 3. You send a clear explanation of what you want 4. You send before/after examples and expected results. -- Don Guillett Microsoft MVP Excel SalesAid Software dguillett(a)gmail.com "Sarah" <Sarah(a)discussions.microsoft.com> wrote in message news:157371C8-4ACF-4A4E-BB83-94FB3F525D42(a)microsoft.com... >I have a large range of data that I would like to pull information from >based > on several factors. There may be more then one outcome. Is there anyway > to > pull that information and put it in a table on a different worksheet?
From: Eduardo on 1 Apr 2010 12:15 Hi, you can use Pivot tables "Sarah" wrote: > I have a large range of data that I would like to pull information from based > on several factors. There may be more then one outcome. Is there anyway to > pull that information and put it in a table on a different worksheet?
From: Don Guillett on 1 Apr 2010 15:33 Sub getdataSAS() Dim lr As Long Dim fc As Long Dim ds As Worksheet Application.ScreenUpdating = False Columns(3).Resize(, 5).Delete With Sheets("Data") fc = Sheet2.Range("b4") * 2 + 3'merged Set ds = Sheets("sheet1") lr = .Cells(Rows.Count, 2).End(xlUp).Row .Range("B4:Z400").AutoFilter Field:=2, Criteria1:="<=" & ds.Range("b3") .Columns("b:d").Copy ds.Range("c1") .Columns(fc).Resize(, 2).Copy ds.Range("f1") .Range("B4:Z4").AutoFilter End With Range("b4").Select Application.ScreenUpdating = True End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software dguillett(a)gmail.com "Don Guillett" <dguillett1(a)gmail.com> wrote in message news:%23NkqCTb0KHA.4204(a)TK2MSFTNGP04.phx.gbl... > If desired, send your file to my address below. I will only look if: > 1. You send a copy of this message on an inserted sheet > 2. You give me the newsgroup and the subject line > 3. You send a clear explanation of what you want > 4. You send before/after examples and expected results. > > > -- > Don Guillett > Microsoft MVP Excel > SalesAid Software > dguillett(a)gmail.com > "Sarah" <Sarah(a)discussions.microsoft.com> wrote in message > news:157371C8-4ACF-4A4E-BB83-94FB3F525D42(a)microsoft.com... >>I have a large range of data that I would like to pull information from >>based >> on several factors. There may be more then one outcome. Is there anyway >> to >> pull that information and put it in a table on a different worksheet? >
|
Pages: 1 Prev: Re-open worksheet saved as PDF? Next: Text Columns Function |