Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 47
Default cell reflect an amount when "C" is typed in, then sum last cell

3/30/2009 1 2 3 4 5 - 31 row five
service charge row six

Mowing $45.00 [ ] [X] [ ] [ ] [ ] ---[ ] [$45.00] row eight

This is basic what I have, I want to be able to select any of the days of
the month in the aray and have that amount to show at the end when I select
that date with an X. In row five the only thing that changes is the
date...changes with the current date. In row eight the only thing I want to
happen is to give a pre-set number at the end and if I select several more
dates I need them to sum. Right now it sums but I can not get it to do the
??circle thing??? and read it, like a loop only once. VERY VERY new to this
guys...sorry and thank you for any help.. Kurt

--
Life is a beach...then you forget your suit...Deal with it and go skinny
dippin
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 8,520
Default cell reflect an amount when "C" is typed in, then sum last cell

Apply this formula in the sum cell. I assume the values are from Column C to
Column AG .

=SUMIF(C8:AG8,"=X",C6:AG6)

If this post helps click Yes
---------------
Jacob Skaria


"Kurt" wrote:

3/30/2009 1 2 3 4 5 - 31 row five
service charge row six

Mowing $45.00 [ ] [X] [ ] [ ] [ ] ---[ ] [$45.00] row eight

This is basic what I have, I want to be able to select any of the days of
the month in the aray and have that amount to show at the end when I select
that date with an X. In row five the only thing that changes is the
date...changes with the current date. In row eight the only thing I want to
happen is to give a pre-set number at the end and if I select several more
dates I need them to sum. Right now it sums but I can not get it to do the
??circle thing??? and read it, like a loop only once. VERY VERY new to this
guys...sorry and thank you for any help.. Kurt

--
Life is a beach...then you forget your suit...Deal with it and go skinny
dippin

  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 47
Default cell reflect an amount when "C" is typed in, then sum last cel

Thank you Jacob, but it didn't work... Row 5 C-AG is only a ref for the month
day/ date. the =TODAY() in cell B5 is only for the year for reference. The
problem is that I need row C8 thru AG8 to give me the value of $45.00 in cell
AH8 when I select a cell referencing from above C5 thru AG5. What has to
happen is I reference a date from above and select the cell below it. It then
has to give the result of $45.00 or a multple of them in AH8. And sorry the
"C" referenced in the Subject is really "X", but you saw that :-} I don't
know how to make the reference to a row for a row and send its total to a
cell...make sence?...I hope so... looks confussing to me...hehe Thank you
--
Life is a beach...then you forget your suit...Deal with it and go skinny
dippin


"Jacob Skaria" wrote:

Apply this formula in the sum cell. I assume the values are from Column C to
Column AG .

=SUMIF(C8:AG8,"=X",C6:AG6)

If this post helps click Yes
---------------
Jacob Skaria


"Kurt" wrote:

3/30/2009 1 2 3 4 5 - 31 row five
service charge row six

Mowing $45.00 [ ] [X] [ ] [ ] [ ] ---[ ] [$45.00] row eight

This is basic what I have, I want to be able to select any of the days of
the month in the aray and have that amount to show at the end when I select
that date with an X. In row five the only thing that changes is the
date...changes with the current date. In row eight the only thing I want to
happen is to give a pre-set number at the end and if I select several more
dates I need them to sum. Right now it sums but I can not get it to do the
??circle thing??? and read it, like a loop only once. VERY VERY new to this
guys...sorry and thank you for any help.. Kurt

--
Life is a beach...then you forget your suit...Deal with it and go skinny
dippin

  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 47
Default cell reflect an amount when "C" is typed in, then sum last cell

Oh My Gosh... I got it... I used this and it works oh so well...thank you for
making me think a bit more... =COUNTIF(C8:AG8,"=X")*(45). I didn't have to
reference the row 5. All I had to do was make it count the entrys and
multiply by the amount...this case $45.00... TYVM for the reply.
--
Life is a beach...then you forget your suit...Deal with it and go skinny
dippin


"Kurt" wrote:

3/30/2009 1 2 3 4 5 - 31 row five
service charge row six

Mowing $45.00 [ ] [X] [ ] [ ] [ ] ---[ ] [$45.00] row eight

This is basic what I have, I want to be able to select any of the days of
the month in the aray and have that amount to show at the end when I select
that date with an X. In row five the only thing that changes is the
date...changes with the current date. In row eight the only thing I want to
happen is to give a pre-set number at the end and if I select several more
dates I need them to sum. Right now it sums but I can not get it to do the
??circle thing??? and read it, like a loop only once. VERY VERY new to this
guys...sorry and thank you for any help.. Kurt

--
Life is a beach...then you forget your suit...Deal with it and go skinny
dippin

  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 8,520
Default cell reflect an amount when "C" is typed in, then sum last cel

Am i understanding this differently.

1 2 3 4 5 ... 31 (row five)
(row six)
X X X X X ... X Total (row eight)

The below formula in AH8 will return the sum of values in C6 to AG6 if X is
marked in row eight C8 to AG8.

=SUMIF(C8:AG8,"=X",C6:AG6)

If this post helps click Yes
---------------
Jacob Skaria


"Kurt" wrote:

Thank you Jacob, but it didn't work... Row 5 C-AG is only a ref for the month
day/ date. the =TODAY() in cell B5 is only for the year for reference. The
problem is that I need row C8 thru AG8 to give me the value of $45.00 in cell
AH8 when I select a cell referencing from above C5 thru AG5. What has to
happen is I reference a date from above and select the cell below it. It then
has to give the result of $45.00 or a multple of them in AH8. And sorry the
"C" referenced in the Subject is really "X", but you saw that :-} I don't
know how to make the reference to a row for a row and send its total to a
cell...make sence?...I hope so... looks confussing to me...hehe Thank you
--
Life is a beach...then you forget your suit...Deal with it and go skinny
dippin


"Jacob Skaria" wrote:

Apply this formula in the sum cell. I assume the values are from Column C to
Column AG .

=SUMIF(C8:AG8,"=X",C6:AG6)

If this post helps click Yes
---------------
Jacob Skaria


"Kurt" wrote:

3/30/2009 1 2 3 4 5 - 31 row five
service charge row six

Mowing $45.00 [ ] [X] [ ] [ ] [ ] ---[ ] [$45.00] row eight

This is basic what I have, I want to be able to select any of the days of
the month in the aray and have that amount to show at the end when I select
that date with an X. In row five the only thing that changes is the
date...changes with the current date. In row eight the only thing I want to
happen is to give a pre-set number at the end and if I select several more
dates I need them to sum. Right now it sums but I can not get it to do the
??circle thing??? and read it, like a loop only once. VERY VERY new to this
guys...sorry and thank you for any help.. Kurt

--
Life is a beach...then you forget your suit...Deal with it and go skinny
dippin



  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 8,520
Default cell reflect an amount when "C" is typed in, then sum last cel

To better that =COUNTIF(C8:AG8,"=X")*(B8)

If this post helps click Yes
---------------
Jacob Skaria


"Kurt" wrote:

Oh My Gosh... I got it... I used this and it works oh so well...thank you for
making me think a bit more... =COUNTIF(C8:AG8,"=X")*(45). I didn't have to
reference the row 5. All I had to do was make it count the entrys and
multiply by the amount...this case $45.00... TYVM for the reply.
--
Life is a beach...then you forget your suit...Deal with it and go skinny
dippin


"Kurt" wrote:

3/30/2009 1 2 3 4 5 - 31 row five
service charge row six

Mowing $45.00 [ ] [X] [ ] [ ] [ ] ---[ ] [$45.00] row eight

This is basic what I have, I want to be able to select any of the days of
the month in the aray and have that amount to show at the end when I select
that date with an X. In row five the only thing that changes is the
date...changes with the current date. In row eight the only thing I want to
happen is to give a pre-set number at the end and if I select several more
dates I need them to sum. Right now it sums but I can not get it to do the
??circle thing??? and read it, like a loop only once. VERY VERY new to this
guys...sorry and thank you for any help.. Kurt

--
Life is a beach...then you forget your suit...Deal with it and go skinny
dippin

  #7   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 47
Default cell reflect an amount when "C" is typed in, then sum last cel

Oh Wow Cool... (B8)... yep tyvm dude.. Be cool and I am gonna mark yes for
help..
--
Life is a beach...then you forget your suit...Deal with it and go skinny
dippin


"Jacob Skaria" wrote:

To better that =COUNTIF(C8:AG8,"=X")*(B8)

If this post helps click Yes
---------------
Jacob Skaria


"Kurt" wrote:

Oh My Gosh... I got it... I used this and it works oh so well...thank you for
making me think a bit more... =COUNTIF(C8:AG8,"=X")*(45). I didn't have to
reference the row 5. All I had to do was make it count the entrys and
multiply by the amount...this case $45.00... TYVM for the reply.
--
Life is a beach...then you forget your suit...Deal with it and go skinny
dippin


"Kurt" wrote:

3/30/2009 1 2 3 4 5 - 31 row five
service charge row six

Mowing $45.00 [ ] [X] [ ] [ ] [ ] ---[ ] [$45.00] row eight

This is basic what I have, I want to be able to select any of the days of
the month in the aray and have that amount to show at the end when I select
that date with an X. In row five the only thing that changes is the
date...changes with the current date. In row eight the only thing I want to
happen is to give a pre-set number at the end and if I select several more
dates I need them to sum. Right now it sums but I can not get it to do the
??circle thing??? and read it, like a loop only once. VERY VERY new to this
guys...sorry and thank you for any help.. Kurt

--
Life is a beach...then you forget your suit...Deal with it and go skinny
dippin

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
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
"CELL("FILENAME") NOT UPDATE AFTER "SAVE AS" ACTION yossie6 Excel Discussion (Misc queries) 1 June 16th 08 12:16 PM
Help!!! Enter "7" in a cell and Excel changes the "7" to "11" immediately!!! [email protected] Excel Discussion (Misc queries) 3 January 5th 07 02:18 PM
convert "15000" to "Fifteen thousand" in excel cell? anurag Excel Worksheet Functions 1 May 4th 06 07:58 AM
Complex if test program possible? If "value" "value", paste "value" in another cell? jseabold Excel Discussion (Misc queries) 1 January 30th 06 10:01 PM


All times are GMT +1. The time now is 11:25 PM.

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

About Us

"It's about Microsoft Excel"