Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Column B has specific words in it (ie Tools, Cookbook, PO)
Column C has a % in it (ie 50%, 100%, 75%) Column D-J have number in them (ie 24.3, 62, 2.50) I have about 90 rows of this data I'm trying to create a table underneath this list that will have the following rows: Tools Cookbook PO What I'd like the formula to do is say if Col B = Tools then take Col C % and * by Col D. if Col B = Cookbook then take Col C % and * by Col D. etc. Can anyone help? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUMPRODUCT(--(B1:B90=B92),C1:C90,D1:D90)
B92 = Tools You probably want to make the arrays absolute references and then have the list of categories extending down from B92 -- Tips for Excel, Word, PowerPoint and Other Applications http://www.kan.org/tips "KC" wrote: Column B has specific words in it (ie Tools, Cookbook, PO) Column C has a % in it (ie 50%, 100%, 75%) Column D-J have number in them (ie 24.3, 62, 2.50) I have about 90 rows of this data I'm trying to create a table underneath this list that will have the following rows: Tools Cookbook PO What I'd like the formula to do is say if Col B = Tools then take Col C % and * by Col D. if Col B = Cookbook then take Col C % and * by Col D. etc. Can anyone help? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
What R U tring to say [B=C%]*D ?
"KC" wrote: Column B has specific words in it (ie Tools, Cookbook, PO) Column C has a % in it (ie 50%, 100%, 75%) Column D-J have number in them (ie 24.3, 62, 2.50) I have about 90 rows of this data I'm trying to create a table underneath this list that will have the following rows: Tools Cookbook PO What I'd like the formula to do is say if Col B = Tools then take Col C % and * by Col D. if Col B = Cookbook then take Col C % and * by Col D. etc. Can anyone help? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
try this. Tools =SUMPRODUCT((A1:A90=A100)*(B1:B90*C1:C90)) Cookbook PO Where the word 'Tools is in A100 Mike "KC" wrote: Column B has specific words in it (ie Tools, Cookbook, PO) Column C has a % in it (ie 50%, 100%, 75%) Column D-J have number in them (ie 24.3, 62, 2.50) I have about 90 rows of this data I'm trying to create a table underneath this list that will have the following rows: Tools Cookbook PO What I'd like the formula to do is say if Col B = Tools then take Col C % and * by Col D. if Col B = Cookbook then take Col C % and * by Col D. etc. Can anyone help? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
oops,
wrong columns =SUMPRODUCT((B1:B90=A100)*(C1:C90*D1:D90)) Mike "Mike H" wrote: Hi, try this. Tools =SUMPRODUCT((A1:A90=A100)*(B1:B90*C1:C90)) Cookbook PO Where the word 'Tools is in A100 Mike "KC" wrote: Column B has specific words in it (ie Tools, Cookbook, PO) Column C has a % in it (ie 50%, 100%, 75%) Column D-J have number in them (ie 24.3, 62, 2.50) I have about 90 rows of this data I'm trying to create a table underneath this list that will have the following rows: Tools Cookbook PO What I'd like the formula to do is say if Col B = Tools then take Col C % and * by Col D. if Col B = Cookbook then take Col C % and * by Col D. etc. Can anyone help? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula Help needed | Excel Worksheet Functions | |||
Formula needed - is this possible? | Excel Discussion (Misc queries) | |||
formula needed | Excel Discussion (Misc queries) | |||
Formula needed | Excel Worksheet Functions | |||
Help! Formula Needed | Excel Discussion (Misc queries) |