a sql solution required for ssrs chart
hi i have following type of data extracted from query col1 | col2 | col3 --------------------------- 100| A |30/12/2009 30 | B |30/12/2009 200 |A| 31/1/2010 50 |B| 31/1/2010 Now ssrs column chart shows data like :- one column for A = 100 & B = 30 on 30/12/2009 i want the chart to show like A = 100 And B = (A+B) = 130 on 30/12/2009 , similarly for 31/1/2010 data needs to be A = 200 , B = 200 + 50 = 250 . is there some trick to do this ? thanks in advance
October 28th, 2010 9:58am

try: SELECT col1 ,col2 ,col3 WHERE col1 - 'A' UNION ALL SELECT sum(col1) ,'B' as col2 ,col3 GROUP BY col3 my blog http://karlberan.wordpress.com/
Free Windows Admin Tool Kit Click here and download it now
October 28th, 2010 10:29am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics