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 » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

=PRODUCT



 
 
Thread Tools Display Modes
  #1  
Old August 1st, 2008, 04:44 PM posted to microsoft.public.excel.misc
billy-bob
external usenet poster
 
Posts: 1
Default =PRODUCT

i'm trying to generate an automatic form (which will locked down)
within the hiden E columm if have a list of numbers, so when i pick 'p'
(this is a tick mark in wingdings) from a drop-down in columm C, it
automatically aprears in columm D as choosen.
at the bottom of the form all choosen items in columm D need to be
multiplied altogether so i used the product formula -
=PRODUCT(D3060)
However because not all of the items in the columm can be choosen at anyone
time - it was coming up as a blank cell - so after looking through this site
I tried this -
=IF(OR(D4561=0,D45:E61=""),"",PRODUCT(D4561))
to elminate the possible zero being generated
it still doesn't work and i'm at a lost
can anyone help!

--
billy-bob
  #2  
Old August 1st, 2008, 05:01 PM posted to microsoft.public.excel.misc
Bob Phillips
external usenet poster
 
Posts: 5,994
Default =PRODUCT

Maybe

=IF(OR(count(D4561)=0,D45:E61=""),"",PRODUCT(D45 61))

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"billy-bob" wrote in message
...
i'm trying to generate an automatic form (which will locked down)
within the hiden E columm if have a list of numbers, so when i pick 'p'
(this is a tick mark in wingdings) from a drop-down in columm C, it
automatically aprears in columm D as choosen.
at the bottom of the form all choosen items in columm D need to be
multiplied altogether so i used the product formula -
=PRODUCT(D3060)
However because not all of the items in the columm can be choosen at
anyone
time - it was coming up as a blank cell - so after looking through this
site
I tried this -
=IF(OR(D4561=0,D45:E61=""),"",PRODUCT(D4561))
to elminate the possible zero being generated
it still doesn't work and i'm at a lost
can anyone help!

--
billy-bob



  #3  
Old August 1st, 2008, 05:06 PM posted to microsoft.public.excel.misc
Tom Hutchins
external usenet poster
 
Posts: 722
Default =PRODUCT

I'm sure there is a more elegant solution, but this works:

=SUMPRODUCT((D4561"")*(D45610)*PRODUCT(D45 61))/SUMPRODUCT((D4561"")*(D45610))

Hope this helps,

Hutch

"billy-bob" wrote:

i'm trying to generate an automatic form (which will locked down)
within the hiden E columm if have a list of numbers, so when i pick 'p'
(this is a tick mark in wingdings) from a drop-down in columm C, it
automatically aprears in columm D as choosen.
at the bottom of the form all choosen items in columm D need to be
multiplied altogether so i used the product formula -
=PRODUCT(D3060)
However because not all of the items in the columm can be choosen at anyone
time - it was coming up as a blank cell - so after looking through this site
I tried this -
=IF(OR(D4561=0,D45:E61=""),"",PRODUCT(D4561))
to elminate the possible zero being generated
it still doesn't work and i'm at a lost
can anyone help!

--
billy-bob

  #4  
Old August 4th, 2008, 10:14 AM posted to microsoft.public.excel.misc
billybob
external usenet poster
 
Posts: 11
Default =PRODUCT

thanks bob for post - sorry it didn't work, cell is returning as '#VALUE' no
matter what if put in D cells
thanks
PS Tom hutches formula 'sort' of works please see my reply to him
thanks again


"Bob Phillips" wrote:

Maybe

=IF(OR(count(D4561)=0,D45:E61=""),"",PRODUCT(D45 61))

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"billy-bob" wrote in message
...
i'm trying to generate an automatic form (which will locked down)
within the hiden E columm if have a list of numbers, so when i pick 'p'
(this is a tick mark in wingdings) from a drop-down in columm C, it
automatically aprears in columm D as choosen.
at the bottom of the form all choosen items in columm D need to be
multiplied altogether so i used the product formula -
=PRODUCT(D3060)
However because not all of the items in the columm can be choosen at
anyone
time - it was coming up as a blank cell - so after looking through this
site
I tried this -
=IF(OR(D4561=0,D45:E61=""),"",PRODUCT(D4561))
to elminate the possible zero being generated
it still doesn't work and i'm at a lost
can anyone help!

--
billy-bob




  #5  
Old August 4th, 2008, 10:18 AM posted to microsoft.public.excel.misc
billybob
external usenet poster
 
Posts: 11
Default =PRODUCT

tom
thanks for post. it works but... when one or more of the figures in the
D45-D61 is removed or blank - to cell comes back blank. this is the problem
i'm looking to resolve.

"Tom Hutchins" wrote:

I'm sure there is a more elegant solution, but this works:

=SUMPRODUCT((D4561"")*(D45610)*PRODUCT(D45 61))/SUMPRODUCT((D4561"")*(D45610))

Hope this helps,

Hutch

"billy-bob" wrote:

i'm trying to generate an automatic form (which will locked down)
within the hiden E columm if have a list of numbers, so when i pick 'p'
(this is a tick mark in wingdings) from a drop-down in columm C, it
automatically aprears in columm D as choosen.
at the bottom of the form all choosen items in columm D need to be
multiplied altogether so i used the product formula -
=PRODUCT(D3060)
However because not all of the items in the columm can be choosen at anyone
time - it was coming up as a blank cell - so after looking through this site
I tried this -
=IF(OR(D4561=0,D45:E61=""),"",PRODUCT(D4561))
to elminate the possible zero being generated
it still doesn't work and i'm at a lost
can anyone help!

--
billy-bob

  #6  
Old August 4th, 2008, 12:07 PM posted to microsoft.public.excel.misc
billybob
external usenet poster
 
Posts: 11
Default =PRODUCT

thanks tom for post
it did work
i found the problem i was having was was in the formula in D45 to D61
it was
=IF(C49="P",E49,)
this was returning this cell as zero (althrough show as blank), so i changed
all these cells to
=IF(C49="P",E49,"")
and it's all working ok now (yip-hee)
thanks for the help.


"Tom Hutchins" wrote:

I'm sure there is a more elegant solution, but this works:

=SUMPRODUCT((D4561"")*(D45610)*PRODUCT(D45 61))/SUMPRODUCT((D4561"")*(D45610))

Hope this helps,

Hutch

"billy-bob" wrote:

i'm trying to generate an automatic form (which will locked down)
within the hiden E columm if have a list of numbers, so when i pick 'p'
(this is a tick mark in wingdings) from a drop-down in columm C, it
automatically aprears in columm D as choosen.
at the bottom of the form all choosen items in columm D need to be
multiplied altogether so i used the product formula -
=PRODUCT(D3060)
However because not all of the items in the columm can be choosen at anyone
time - it was coming up as a blank cell - so after looking through this site
I tried this -
=IF(OR(D4561=0,D45:E61=""),"",PRODUCT(D4561))
to elminate the possible zero being generated
it still doesn't work and i'm at a lost
can anyone help!

--
billy-bob

  #7  
Old August 4th, 2008, 12:10 PM posted to microsoft.public.excel.misc
billybob
external usenet poster
 
Posts: 11
Default =PRODUCT

thanks bob for post
it did work
i found the problem, i had the wrong formula in D45 to D61 it was
=IF(C49="P",E49,)
this was returning this cell as zero (althrough show as blank), so i changed
all these cells to
=IF(C49="P",E49,"")
and it's all working ok now with just the product formula alone (yip-hee)
thanks for the help.


"Bob Phillips" wrote:

Maybe

=IF(OR(count(D4561)=0,D45:E61=""),"",PRODUCT(D45 61))

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"billy-bob" wrote in message
...
i'm trying to generate an automatic form (which will locked down)
within the hiden E columm if have a list of numbers, so when i pick 'p'
(this is a tick mark in wingdings) from a drop-down in columm C, it
automatically aprears in columm D as choosen.
at the bottom of the form all choosen items in columm D need to be
multiplied altogether so i used the product formula -
=PRODUCT(D3060)
However because not all of the items in the columm can be choosen at
anyone
time - it was coming up as a blank cell - so after looking through this
site
I tried this -
=IF(OR(D4561=0,D45:E61=""),"",PRODUCT(D4561))
to elminate the possible zero being generated
it still doesn't work and i'm at a lost
can anyone help!

--
billy-bob




 




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 02:45 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.