A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Setting up and Configuration
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Transfer information



 
 
Thread Tools Display Modes
  #1  
Old April 16th, 2007, 07:16 PM posted to microsoft.public.excel.setup
Aggie G
external usenet poster
 
Posts: 16
Default Transfer information

I have a spreadsheet with three sheets. One sheet is the main the data sheet
that contains all the information. On the other two sheets I am trying to
setup something that would allow me to pull over data such as name, award
amount, award type, etc. based on the month awarded. I am not sure what would
allow me to do this. Any direction?
  #2  
Old April 16th, 2007, 10:20 PM posted to microsoft.public.excel.setup
Bill Ridgeway
external usenet poster
 
Posts: 387
Default Transfer information

Sounds like another job for Pivot Table! Click on DataPivot Table and
Pivot Chart Reports and follow that through. Pivot tables can be a bit
tricky until you get used to them with a bit of experimentation.

Regards.

Bill Ridgeway
Computer Solutions

"Aggie G" wrote in message
...
I have a spreadsheet with three sheets. One sheet is the main the data
sheet
that contains all the information. On the other two sheets I am trying to
setup something that would allow me to pull over data such as name, award
amount, award type, etc. based on the month awarded. I am not sure what
would
allow me to do this. Any direction?



  #3  
Old April 16th, 2007, 10:34 PM posted to microsoft.public.excel.setup
Aggie G
external usenet poster
 
Posts: 16
Default Transfer information

A pivot table will not work for what I want. Let me provide you more
information.

Every month we have a staff meeting where employees are recognized and given
awards. The spreadsheet contains all the information about each award such as
the name of the recipient, the month award, the amount of time off, etc. I
want this information to populate on another sheet (Agenda), but I only want
the information associated with the month of the awared. As an example; if I
have the following:

Name Month Awarded Award Amount
Wylie, Amberlyn January-07 2
Boyett, Joann February-07 1
Brown, Josh February-07 2

Using this information, I want the name and the award amount for the month
of February to populate in the Agenda sheet. How can I do this?


ill Ridgeway" wrote:

Sounds like another job for Pivot Table! Click on DataPivot Table and
Pivot Chart Reports and follow that through. Pivot tables can be a bit
tricky until you get used to them with a bit of experimentation.

Regards.

Bill Ridgeway
Computer Solutions

"Aggie G" wrote in message
...
I have a spreadsheet with three sheets. One sheet is the main the data
sheet
that contains all the information. On the other two sheets I am trying to
setup something that would allow me to pull over data such as name, award
amount, award type, etc. based on the month awarded. I am not sure what
would
allow me to do this. Any direction?




  #4  
Old April 17th, 2007, 09:28 AM posted to microsoft.public.excel.setup
Roger Govier
external usenet poster
 
Posts: 2,602
Default Transfer information

Hi

It sounds like Advanced Filter, extracting data to your Monthly sheet
will do the job.
Take a look at Debra Dalgleish's site for detailed instruction on how to
achieve it.
http://www.contextures.com/xladvfilter01.html#ExtractWs

--
Regards

Roger Govier


"Aggie G" wrote in message
...
A pivot table will not work for what I want. Let me provide you more
information.

Every month we have a staff meeting where employees are recognized and
given
awards. The spreadsheet contains all the information about each award
such as
the name of the recipient, the month award, the amount of time off,
etc. I
want this information to populate on another sheet (Agenda), but I
only want
the information associated with the month of the awared. As an
example; if I
have the following:

Name Month Awarded
Award Amount
Wylie, Amberlyn January-07 2
Boyett, Joann February-07 1
Brown, Josh February-07 2

Using this information, I want the name and the award amount for the
month
of February to populate in the Agenda sheet. How can I do this?


ill Ridgeway" wrote:

Sounds like another job for Pivot Table! Click on DataPivot Table
and
Pivot Chart Reports and follow that through. Pivot tables can be a
bit
tricky until you get used to them with a bit of experimentation.

Regards.

Bill Ridgeway
Computer Solutions

"Aggie G" wrote in message
...
I have a spreadsheet with three sheets. One sheet is the main the
data
sheet
that contains all the information. On the other two sheets I am
trying to
setup something that would allow me to pull over data such as name,
award
amount, award type, etc. based on the month awarded. I am not sure
what
would
allow me to do this. Any direction?






  #5  
Old April 17th, 2007, 10:26 AM posted to microsoft.public.excel.setup
Max
external usenet poster
 
Posts: 8,574
Default Transfer information

One alternative play which would also deliver the required results
is illustrated in this sample construct:
http://www.savefile.com/files/646903
Reflect selected info in another sht.xls

Source table assumed in sheet: X, cols A to C,
with the key col = col B (Month Awarded) contains "1st-of-month" real dates
Data assumed running in row2 down

In sheet: Agenda,
Create a DV to select the month-year in C2
(use a defined range: Month created in the index sheet: I)
Select C2, click Data Validation. Allow: List, Source: =Month

Then place

In A4:
=IF(X!B2="","",IF(X!B2=$C$2,ROW(),""))
Leave A1:A3 blank. This is the criteria col.

In B4:
=IF(C4="","",ROW(A1))
Col B is to provide a simple serial numbering corresponding to what's
extracted in col C

In C4:
=IF(ROW(A1)COUNT($A:$A),"",INDEX(X!A:A,SMALL($A:$ A,ROW(A1))-2))

In D4:
=IF(ROW(A1)COUNT($A:$A),"",INDEX(X!C:C,SMALL($A:$ A,ROW(A1))-2))
Cols C & D will extract the name and award amts from X's cols A and C, via
the indexed cols viz: INDEX(X!A:A,... & INDEX(X!C:C,...

Select A44, copy down to cover the max expected extent of data in X's col
B, say down to D200?. Hide away col A. Cols B to D will return the required
results from X, depending on the month-year selected in the DV cell C2.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Aggie G" wrote:
A pivot table will not work for what I want. Let me provide you more
information.

Every month we have a staff meeting where employees are recognized and given
awards. The spreadsheet contains all the information about each award such as
the name of the recipient, the month award, the amount of time off, etc. I
want this information to populate on another sheet (Agenda), but I only want
the information associated with the month of the awared. As an example; if I
have the following:

Name Month Awarded Award Amount
Wylie, Amberlyn January-07 2
Boyett, Joann February-07 1
Brown, Josh February-07 2

Using this information, I want the name and the award amount for the month
of February to populate in the Agenda sheet. How can I do this?

  #6  
Old April 18th, 2007, 10:30 PM posted to microsoft.public.excel.setup
Aggie G
external usenet poster
 
Posts: 16
Default Transfer information

I would like to send you the file I am working with b/c I am not able to
apply the sample you provided to my spreadsheet since they don't look alike.
I tried to change the formula to match with my information, but am finding it
difficult. I have a link to my document so you can maybe send me in the right
direction.

http://www.savefile.com/files/651790



"Max" wrote:

One alternative play which would also deliver the required results
is illustrated in this sample construct:
http://www.savefile.com/files/646903
Reflect selected info in another sht.xls

Source table assumed in sheet: X, cols A to C,
with the key col = col B (Month Awarded) contains "1st-of-month" real dates
Data assumed running in row2 down

In sheet: Agenda,
Create a DV to select the month-year in C2
(use a defined range: Month created in the index sheet: I)
Select C2, click Data Validation. Allow: List, Source: =Month

Then place

In A4:
=IF(X!B2="","",IF(X!B2=$C$2,ROW(),""))
Leave A1:A3 blank. This is the criteria col.

In B4:
=IF(C4="","",ROW(A1))
Col B is to provide a simple serial numbering corresponding to what's
extracted in col C

In C4:
=IF(ROW(A1)COUNT($A:$A),"",INDEX(X!A:A,SMALL($A:$ A,ROW(A1))-2))

In D4:
=IF(ROW(A1)COUNT($A:$A),"",INDEX(X!C:C,SMALL($A:$ A,ROW(A1))-2))
Cols C & D will extract the name and award amts from X's cols A and C, via
the indexed cols viz: INDEX(X!A:A,... & INDEX(X!C:C,...

Select A44, copy down to cover the max expected extent of data in X's col
B, say down to D200?. Hide away col A. Cols B to D will return the required
results from X, depending on the month-year selected in the DV cell C2.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Aggie G" wrote:
A pivot table will not work for what I want. Let me provide you more
information.

Every month we have a staff meeting where employees are recognized and given
awards. The spreadsheet contains all the information about each award such as
the name of the recipient, the month award, the amount of time off, etc. I
want this information to populate on another sheet (Agenda), but I only want
the information associated with the month of the awared. As an example; if I
have the following:

Name Month Awarded Award Amount
Wylie, Amberlyn January-07 2
Boyett, Joann February-07 1
Brown, Josh February-07 2

Using this information, I want the name and the award amount for the month
of February to populate in the Agenda sheet. How can I do this?

  #7  
Old April 19th, 2007, 12:38 AM posted to microsoft.public.excel.setup
Max
external usenet poster
 
Posts: 8,574
Default Transfer information

Here's your sample, with the suggestion implemented to suit:
http://cjoint.com/?etbDrKg51K
Aggie_Sample_File.xls

--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Aggie G" wrote:
I would like to send you the file I am working with b/c I am not able to
apply the sample you provided to my spreadsheet since they don't look alike.
I tried to change the formula to match with my information, but am finding it
difficult. I have a link to my document so you can maybe send me in the right
direction.

http://www.savefile.com/files/651790


  #8  
Old April 19th, 2007, 03:52 PM posted to microsoft.public.excel.setup
Aggie G
external usenet poster
 
Posts: 16
Default Transfer information

Thank you very much! It works perfectly and I can now use this for future
spreadsheets. Thanks again!

"Max" wrote:

Here's your sample, with the suggestion implemented to suit:
http://cjoint.com/?etbDrKg51K
Aggie_Sample_File.xls

--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Aggie G" wrote:
I would like to send you the file I am working with b/c I am not able to
apply the sample you provided to my spreadsheet since they don't look alike.
I tried to change the formula to match with my information, but am finding it
difficult. I have a link to my document so you can maybe send me in the right
direction.

http://www.savefile.com/files/651790


  #9  
Old April 19th, 2007, 06:59 PM posted to microsoft.public.excel.setup
Max
external usenet poster
 
Posts: 8,574
Default Transfer information

You're welcome, Aggie.
Delighted to hear that.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Aggie G" wrote in message
...
Thank you very much! It works perfectly and I can now use this for future
spreadsheets. Thanks again!



  #10  
Old April 25th, 2007, 07:32 PM posted to microsoft.public.excel.setup
Aggie G
external usenet poster
 
Posts: 16
Default Transfer information

Ok I have another question about this same spreadsheet. What I am trying to
accomplish is create an accumulative amount of awarded hours for each
employee in my company for each MTD and YTD. I want the Carrots YTD worksheet
to read from the Carrot 2007 worksheet and enter in the total hours for each
month and provide a total for the year. Can you help me do this? Below is the
link to my document.

http://www.savefile.com/files/651790


"Max" wrote:

You're welcome, Aggie.
Delighted to hear that.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Aggie G" wrote in message
...
Thank you very much! It works perfectly and I can now use this for future
spreadsheets. Thanks again!




 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 09:54 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.