Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Comparing groups of Product Values to a Total

Status
Not open for further replies.

jjme88

Programmer
Dec 28, 2007
58
GB
I have a problem I cant work I have a list of products all with a total sales value

What I want to do is write a query that will combine any 2 products by adding there totals together and then compare that value to the total sum of all products to get a % value of the combo sum over the total sum.

Only listing those combinations where the % is above a certain value!

Does that make any sense to any one.

Eg.
Product A = £10,000
Product B = £15,000
Product C = £12,000
Product D = £11,000

Total Of all = £48,000

Product A + Product B = £25,000

£25,000 / £48,000 = 52%

Say my target was 50 % I would want the query to return the Combination of these 2 Products. Whereas the combination of say Product C and Product D which would be 48% would not be returned.

Hope someone can help e thanks,
jj
 
Code:
[COLOR=blue]DECLARE[/color] @Test [COLOR=blue]TABLE[/color] (Fld1 [COLOR=blue]varchar[/color](200), Qty [COLOR=blue]Int[/color])
[COLOR=blue]INSERT[/color] [COLOR=blue]INTO[/color] @Test [COLOR=blue]VALUES[/color] ([COLOR=red]'Product A'[/color],10000)
[COLOR=blue]INSERT[/color] [COLOR=blue]INTO[/color] @Test [COLOR=blue]VALUES[/color] ([COLOR=red]'Product B'[/color],15000)
[COLOR=blue]INSERT[/color] [COLOR=blue]INTO[/color] @Test [COLOR=blue]VALUES[/color] ([COLOR=red]'Product C'[/color],12000)
[COLOR=blue]INSERT[/color] [COLOR=blue]INTO[/color] @Test [COLOR=blue]VALUES[/color] ([COLOR=red]'Product D'[/color],11000)

[COLOR=blue]SELECT[/color] Tbl1.Fld, Tbl1.Qty, Tbl2.AllQty,
	  ( Tbl1.Qty*1.0/ Tbl2.AllQty) [COLOR=blue]AS[/color] SomePercent
[COLOR=blue]FROM[/color] ([COLOR=blue]SELECT[/color] (Test.Qty+test.Qty) [COLOR=blue]AS[/color] Qty,
              Test.Fld1+[COLOR=red]' '[/color]+test.Fld1 [COLOR=blue]AS[/color] Fld
           [COLOR=blue]FROM[/color] @Test test
           [COLOR=blue]Full[/color] [COLOR=blue]JOIN[/color] ([COLOR=blue]SELECT[/color] Fld1, Qty [COLOR=blue]FROM[/color] @Test) Tbl1
                [COLOR=blue]ON[/color] test.Fld1 <> Tbl1.Fld1) tbl1
[COLOR=blue]INNER[/color] [COLOR=blue]JOIN[/color] ([COLOR=blue]SELECT[/color] SUM(Qty) [COLOR=blue]AS[/color] AllQty 
           [COLOR=blue]FROM[/color] @Test) Tbl2 [COLOR=blue]ON[/color] 1 = 1
[COLOR=blue]WHERE[/color] Tbl1.Qty*1.0/ Tbl2.AllQty > 0.5

Borislav Borissov
VFP9 SP2, SQL Server 2000/2005.
Microsoft MVP VFP
 
hi this seems close but it adds Product A to Product A Rather than Product A to B and so on...

thanks for the help

 
Hi I changed your suggestion a bit to this..

DECLARE @Test TABLE (Fld1 varchar(200), Qty Int)
INSERT INTO @Test VALUES ('Product A',10000)
INSERT INTO @Test VALUES ('Product B',15000)
INSERT INTO @Test VALUES ('Product C',12000)
INSERT INTO @Test VALUES ('Product D',11000)

SELECT Tbl1.Fld, Tbl1.Qty, Tbl2.AllQty,
( Tbl1.Qty*1.0/ Tbl2.AllQty) AS SomePercent
FROM (SELECT (Tbl1.Qty+test.Qty) AS Qty,
Tbl1.Fld1+' '+test.Fld1 AS Fld
FROM @Test test
Full JOIN (SELECT Fld1, Qty FROM @Test) Tbl1
ON test.Fld1 <> Tbl1.Fld1) tbl1
INNER JOIN (SELECT SUM(Qty) AS AllQty
FROM @Test) Tbl2 ON 1 = 1
WHERE Tbl1.Qty*1.0/ Tbl2.AllQty > 0.5

The only problem I nowe have is that it doubles up on the comparisions ie... 'Product A Product B' and 'Product B Product A' amount to the same thing so I would only want to return one of them... How could I filter out the duplicate?

thanks
jj
 
Code:
DECLARE @Test TABLE (Fld1 varchar(200), Qty Int)
INSERT INTO @Test VALUES ('Product A',10000)
INSERT INTO @Test VALUES ('Product B',15000)
INSERT INTO @Test VALUES ('Product C',12000)
INSERT INTO @Test VALUES ('Product D',11000)

SELECT Tbl1.Fld, Tbl1.Qty, Tbl2.AllQty,
      ( Tbl1.Qty*1.0/ Tbl2.AllQty) AS SomePercent
FROM (SELECT (Tbl1.Qty+test.Qty) AS Qty,
              Tbl1.Fld1+' '+test.Fld1 AS Fld
           FROM @Test test
           Full JOIN (SELECT Fld1, Qty FROM @Test) Tbl1
                ON test.Fld1 [!]>[/!] Tbl1.Fld1) tbl1
INNER JOIN (SELECT SUM(Qty) AS AllQty
           FROM @Test) Tbl2 ON 1 = 1
WHERE Tbl1.Qty*1.0/ Tbl2.AllQty > 0.5

Instead of 'not equal' <> use greater than > or less than <

Make sense?

-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top