Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Excel 13 Folder Spreadsheet!!!!

Hi everyone,

I am building a spreadsheet for a friend that will contain date of sale,
First name, Last name, address, original $ amount, % of that $ amount, How
many days financed, and balance due. This spreadsheet consist of 31 sheets
representing each day of the month and a final sheet that takes the total
from the previous 31 sheets. I need to create a sheet that will take each
individual name with a balance from the previous 31 sheets and pull all the
information from that row on the specific sheet on a Balance owed sheet. I
have to do this for every month in the year. I have tried v lookup but that
defeats the purpose of going thru each individual item seeing if there is a
balance. I need something that will look it up and pull all the information
from the line item. I need this to look through 12 different workbooks. Some
Please HELP!!!!
--
Thanks in advance for the help.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,574
Default Excel 13 Folder Spreadsheet!!!!

Based on your description you should be building a database for the type of
data management you're trying to accomplish.

XL isn't really built for the relational structure you're contemplating. XL
can be forced to have relational relationships between tables of data but it
is too easy to screw up those references.
--
Brevity is the soul of wit.


"Feast" wrote:

Hi everyone,

I am building a spreadsheet for a friend that will contain date of sale,
First name, Last name, address, original $ amount, % of that $ amount, How
many days financed, and balance due. This spreadsheet consist of 31 sheets
representing each day of the month and a final sheet that takes the total
from the previous 31 sheets. I need to create a sheet that will take each
individual name with a balance from the previous 31 sheets and pull all the
information from that row on the specific sheet on a Balance owed sheet. I
have to do this for every month in the year. I have tried v lookup but that
defeats the purpose of going thru each individual item seeing if there is a
balance. I need something that will look it up and pull all the information
from the line item. I need this to look through 12 different workbooks. Some
Please HELP!!!!
--
Thanks in advance for the help.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Excel 13 Folder Spreadsheet!!!!

You say it can be forced to do what I am asking. I do plan on locking the
cells where people cannot change them. Is there a way to pull information off
previous sheets without putting in a specific name. I just need the ones with
open balances to pull to a different sheet.
--
Thanks in advance for the help.


"Dave F" wrote:

Based on your description you should be building a database for the type of
data management you're trying to accomplish.

XL isn't really built for the relational structure you're contemplating. XL
can be forced to have relational relationships between tables of data but it
is too easy to screw up those references.
--
Brevity is the soul of wit.


"Feast" wrote:

Hi everyone,

I am building a spreadsheet for a friend that will contain date of sale,
First name, Last name, address, original $ amount, % of that $ amount, How
many days financed, and balance due. This spreadsheet consist of 31 sheets
representing each day of the month and a final sheet that takes the total
from the previous 31 sheets. I need to create a sheet that will take each
individual name with a balance from the previous 31 sheets and pull all the
information from that row on the specific sheet on a Balance owed sheet. I
have to do this for every month in the year. I have tried v lookup but that
defeats the purpose of going thru each individual item seeing if there is a
balance. I need something that will look it up and pull all the information
from the line item. I need this to look through 12 different workbooks. Some
Please HELP!!!!
--
Thanks in advance for the help.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 145
Default Excel 13 Folder Spreadsheet!!!!

We guess you have 12 workbooks, one for each month.
Each workbook has 32 sheets, one for each calendar day and one summary
sheet.

We would imagine to combine all 31 sheets of each workbook in a new sheet,
sort by name/date,
filter out or delete rows with 0 balance

If necessary, we would loop in all 12 workbooks

Doing this once a month is not difficult but of course, can be automated.

Regards

"Feast" wrote in message
...
Hi everyone,

I am building a spreadsheet for a friend that will contain date of sale,
First name, Last name, address, original $ amount, % of that $ amount, How
many days financed, and balance due. This spreadsheet consist of 31 sheets
representing each day of the month and a final sheet that takes the total
from the previous 31 sheets. I need to create a sheet that will take each
individual name with a balance from the previous 31 sheets and pull all

the
information from that row on the specific sheet on a Balance owed sheet. I
have to do this for every month in the year. I have tried v lookup but

that
defeats the purpose of going thru each individual item seeing if there is

a
balance. I need something that will look it up and pull all the

information
from the line item. I need this to look through 12 different workbooks.

Some
Please HELP!!!!
--
Thanks in advance for the help.



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Excel 13 Folder Spreadsheet!!!!

Yes....... PY and Associates. Now how would I go about doing this?
--
Thanks in advance for the help.


"PY & Associates" wrote:

We guess you have 12 workbooks, one for each month.
Each workbook has 32 sheets, one for each calendar day and one summary
sheet.

We would imagine to combine all 31 sheets of each workbook in a new sheet,
sort by name/date,
filter out or delete rows with 0 balance

If necessary, we would loop in all 12 workbooks

Doing this once a month is not difficult but of course, can be automated.

Regards

"Feast" wrote in message
...
Hi everyone,

I am building a spreadsheet for a friend that will contain date of sale,
First name, Last name, address, original $ amount, % of that $ amount, How
many days financed, and balance due. This spreadsheet consist of 31 sheets
representing each day of the month and a final sheet that takes the total
from the previous 31 sheets. I need to create a sheet that will take each
individual name with a balance from the previous 31 sheets and pull all

the
information from that row on the specific sheet on a Balance owed sheet. I
have to do this for every month in the year. I have tried v lookup but

that
defeats the purpose of going thru each individual item seeing if there is

a
balance. I need something that will look it up and pull all the

information
from the line item. I need this to look through 12 different workbooks.

Some
Please HELP!!!!
--
Thanks in advance for the help.






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 145
Default Excel 13 Folder Spreadsheet!!!!

In sheet day1,
copy all except row1 (label) of each subsequent sheets (day2...day31) and
paste to bottom of sheet day1,
(in fact we consider a sheet for each day is unnecessary, but that is
your design)
sort ascending by balance,
delete all rows with 0 balance,
sort again by name/date

Help yourself with macro recorder please.

Regards

"Feast" wrote in message
...
Yes....... PY and Associates. Now how would I go about doing this?
--
Thanks in advance for the help.


"PY & Associates" wrote:

We guess you have 12 workbooks, one for each month.
Each workbook has 32 sheets, one for each calendar day and one summary
sheet.

We would imagine to combine all 31 sheets of each workbook in a new

sheet,
sort by name/date,
filter out or delete rows with 0 balance

If necessary, we would loop in all 12 workbooks

Doing this once a month is not difficult but of course, can be

automated.

Regards

"Feast" wrote in message
...
Hi everyone,

I am building a spreadsheet for a friend that will contain date of

sale,
First name, Last name, address, original $ amount, % of that $ amount,

How
many days financed, and balance due. This spreadsheet consist of 31

sheets
representing each day of the month and a final sheet that takes the

total
from the previous 31 sheets. I need to create a sheet that will take

each
individual name with a balance from the previous 31 sheets and pull

all
the
information from that row on the specific sheet on a Balance owed

sheet. I
have to do this for every month in the year. I have tried v lookup but

that
defeats the purpose of going thru each individual item seeing if there

is
a
balance. I need something that will look it up and pull all the

information
from the line item. I need this to look through 12 different

workbooks.
Some
Please HELP!!!!
--
Thanks in advance for the help.






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,290
Default Excel 13 Folder Spreadsheet!!!!

For starters you could use a 3d formula that sums a cell from
each of the 31 sheets. It assumes each set of data is on
the same row on each daily sheet...
=SUM(Sheet1:Sheet31!H2)
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware


"Feast"
wrote in message
Hi everyone,
I am building a spreadsheet for a friend that will contain date of sale,
First name, Last name, address, original $ amount, % of that $ amount, How
many days financed, and balance due. This spreadsheet consist of 31 sheets
representing each day of the month and a final sheet that takes the total
from the previous 31 sheets. I need to create a sheet that will take each
individual name with a balance from the previous 31 sheets and pull all the
information from that row on the specific sheet on a Balance owed sheet. I
have to do this for every month in the year. I have tried v lookup but that
defeats the purpose of going thru each individual item seeing if there is a
balance. I need something that will look it up and pull all the information
from the line item. I need this to look through 12 different workbooks. Some
Please HELP!!!!--
Thanks in advance for the help.
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Working spreadsheet highlighting function for Excel 2007 Mr. Low Excel Worksheet Functions 4 June 16th 06 06:12 PM
Cannot save excel files to a folder on a network Robbie Excel Discussion (Misc queries) 1 June 9th 06 07:26 AM
Excel Spreadsheet Not Saved Dialog Error KNETTEK Excel Discussion (Misc queries) 0 June 3rd 06 12:14 AM
Can Excel 97 read Excel 2003 simple spreadsheet? MSfStl Excel Discussion (Misc queries) 3 November 21st 05 07:08 PM
Excel Range Value issue (Excel 97 Vs Excel 2003) Keeno Excel Discussion (Misc queries) 2 June 13th 05 02:01 PM


All times are GMT +1. The time now is 05:29 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"