Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Urgent! I am in dire trouble - boss says it can be done - How?

I am need to create a sheet on which I can track 2 different totals in the
same column.

I need to be able to put multiple entries in and add them up as a sub total
of the new entries and then an overall total of all entries.
Ex:

Column A is a date column and column B is an inventory rec'v count

So C3=the subtotal of the new entries and C1= the overall total.

Is this even possible?

Any suggestions? I'm desperate as my boss is convinced that this is possible
in Excel.

I can't even seem to make my cell references absolute ...

I can't get the formula =$C$4 to point to an absolute cell reference so that
I can delete row 4 and the following row is brought up, now becoming row 4
and have the formula recognize it as such, I get #REF!

Again my boss is convinced that one is able to delete the referenced row and
it should just automatically update.

Am I missing something really blatant?

HELP!!



  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7,247
Default Urgent! I am in dire trouble - boss says it can be done - How?

For the referencing #REF problem, use INDIRECT. E.g.,

=INDIRECT("A1")

will refer to cell A1 regardless of whatever rows you may insert or delete.
This is because Excel sees the "A1" as a simple character string, not an
actual cell reference, so it will not modify the text string as you
insert/delete rows/columns.

I'm not clear what you're looking for in the subtotals question.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting
www.cpearson.com
(email on the web site)


"Cathi" wrote in message
...
I am need to create a sheet on which I can track 2 different totals in the
same column.

I need to be able to put multiple entries in and add them up as a sub
total
of the new entries and then an overall total of all entries.
Ex:

Column A is a date column and column B is an inventory rec'v count

So C3=the subtotal of the new entries and C1= the overall total.

Is this even possible?

Any suggestions? I'm desperate as my boss is convinced that this is
possible
in Excel.

I can't even seem to make my cell references absolute ...

I can't get the formula =$C$4 to point to an absolute cell reference so
that
I can delete row 4 and the following row is brought up, now becoming row 4
and have the formula recognize it as such, I get #REF!

Again my boss is convinced that one is able to delete the referenced row
and
it should just automatically update.

Am I missing something really blatant?

HELP!!




  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Urgent! I am in dire trouble - boss says it can be done - How?

Thank You, Thank you the Indirect worked like a dream~

The subtotals question:

if I am inserting several entries in a given week, they number of entries
changes every week so I can't just use a SUM function as I need to track only
those entries, how is it possible to both total "only the new weeks entries"
and then in the same column be able to total the whole column for an accurate
current inventory?

Is it possible, if not do you have any other suggestions?



"Chip Pearson" wrote:

For the referencing #REF problem, use INDIRECT. E.g.,

=INDIRECT("A1")

will refer to cell A1 regardless of whatever rows you may insert or delete.
This is because Excel sees the "A1" as a simple character string, not an
actual cell reference, so it will not modify the text string as you
insert/delete rows/columns.

I'm not clear what you're looking for in the subtotals question.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting
www.cpearson.com
(email on the web site)


"Cathi" wrote in message
...
I am need to create a sheet on which I can track 2 different totals in the
same column.

I need to be able to put multiple entries in and add them up as a sub
total
of the new entries and then an overall total of all entries.
Ex:

Column A is a date column and column B is an inventory rec'v count

So C3=the subtotal of the new entries and C1= the overall total.

Is this even possible?

Any suggestions? I'm desperate as my boss is convinced that this is
possible
in Excel.

I can't even seem to make my cell references absolute ...

I can't get the formula =$C$4 to point to an absolute cell reference so
that
I can delete row 4 and the following row is brought up, now becoming row 4
and have the formula recognize it as such, I get #REF!

Again my boss is convinced that one is able to delete the referenced row
and
it should just automatically update.

Am I missing something really blatant?

HELP!!




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Urgent! I am in dire trouble - boss says it can be done - How?

You can probably use SUMIF to get your subtotal, by comparing the
dates against another date (TODAY ?) which determines what is new. Put
your reference date in D1, then put this in C3:

=SUMIF(A1:A100,"="&D1,B1:B100)

I've assumed 100 entries - adjust to suit. This looks at your dates in
column A, compares them with the date in D1, and adds up column B
entries where the date is later than or equal to the date in D1.

Hope this helps.

Pete

On Oct 7, 12:37 am, Cathi wrote:
I am need to create a sheet on which I can track 2 different totals in the
same column.

I need to be able to put multiple entries in and add them up as a sub total
of the new entries and then an overall total of all entries.
Ex:

Column A is a date column and column B is an inventory rec'v count

So C3=the subtotal of the new entries and C1= the overall total.

Is this even possible?

Any suggestions? I'm desperate as my boss is convinced that this is possible
in Excel.

I can't even seem to make my cell references absolute ...

I can't get the formula =$C$4 to point to an absolute cell reference so that
I can delete row 4 and the following row is brought up, now becoming row 4
and have the formula recognize it as such, I get #REF!

Again my boss is convinced that one is able to delete the referenced row and
it should just automatically update.

Am I missing something really blatant?

HELP!!



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Urgent! I am in dire trouble - boss says it can be done - How?

Like a dream, a few adjustments for cell refernces and ta da!!!

I cannot thank you enough , I've spent too much time trying to figure this
out and was thinking way way too hard.

My humble gratitude

"Pete_UK" wrote:

You can probably use SUMIF to get your subtotal, by comparing the
dates against another date (TODAY ?) which determines what is new. Put
your reference date in D1, then put this in C3:

=SUMIF(A1:A100,"="&D1,B1:B100)

I've assumed 100 entries - adjust to suit. This looks at your dates in
column A, compares them with the date in D1, and adds up column B
entries where the date is later than or equal to the date in D1.

Hope this helps.

Pete

On Oct 7, 12:37 am, Cathi wrote:
I am need to create a sheet on which I can track 2 different totals in the
same column.

I need to be able to put multiple entries in and add them up as a sub total
of the new entries and then an overall total of all entries.
Ex:

Column A is a date column and column B is an inventory rec'v count

So C3=the subtotal of the new entries and C1= the overall total.

Is this even possible?

Any suggestions? I'm desperate as my boss is convinced that this is possible
in Excel.

I can't even seem to make my cell references absolute ...

I can't get the formula =$C$4 to point to an absolute cell reference so that
I can delete row 4 and the following row is brought up, now becoming row 4
and have the formula recognize it as such, I get #REF!

Again my boss is convinced that one is able to delete the referenced row and
it should just automatically update.

Am I missing something really blatant?

HELP!!






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Urgent! I am in dire trouble - boss says it can be done - How?

Thanks for feeding back Cathi - I'm glad you were able to get it to
work.

Pete

On Oct 7, 2:04 am, Cathi wrote:
Like a dream, a few adjustments for cell refernces and ta da!!!

I cannot thank you enough , I've spent too much time trying to figure this
out and was thinking way way too hard.

My humble gratitude



"Pete_UK" wrote:
You can probably use SUMIF to get your subtotal, by comparing the
dates against another date (TODAY ?) which determines what is new. Put
your reference date in D1, then put this in C3:


=SUMIF(A1:A100,"="&D1,B1:B100)


I've assumed 100 entries - adjust to suit. This looks at your dates in
column A, compares them with the date in D1, and adds up column B
entries where the date is later than or equal to the date in D1.


Hope this helps.


Pete


On Oct 7, 12:37 am, Cathi wrote:
I am need to create a sheet on which I can track 2 different totals in the
same column.


I need to be able to put multiple entries in and add them up as a sub total
of the new entries and then an overall total of all entries.
Ex:


Column A is a date column and column B is an inventory rec'v count


So C3=the subtotal of the new entries and C1= the overall total.


Is this even possible?


Any suggestions? I'm desperate as my boss is convinced that this is possible
in Excel.


I can't even seem to make my cell references absolute ...


I can't get the formula =$C$4 to point to an absolute cell reference so that
I can delete row 4 and the following row is brought up, now becoming row 4
and have the formula recognize it as such, I get #REF!


Again my boss is convinced that one is able to delete the referenced row and
it should just automatically update.


Am I missing something really blatant?


HELP!! - Hide quoted text -


- Show quoted text -



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
Urgent - Having trouble with decimals helen Excel Discussion (Misc queries) 8 February 2nd 07 06:47 PM
My Boss is nuts John21 Excel Worksheet Functions 1 August 4th 06 06:15 PM
My boss is crazy John21 Excel Worksheet Functions 0 August 4th 06 05:02 PM
Help! Boss needs this ASAP - I am pulling out my hair here folks use of "&" in HEADER mshellz2u Excel Worksheet Functions 2 June 28th 06 08:06 PM
Urgent-Urgent VBA LOOP Jeff Excel Discussion (Misc queries) 0 October 6th 05 05:46 PM


All times are GMT +1. The time now is 12:41 AM.

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"