Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 Analysis Server and Reporting Services (2005)
 Multiple dataset in a chart

Author  Topic 

lavvu
Starting Member

13 Posts

Posted - 2008-12-09 : 07:30:15
Can anyone tell me if it is possible to use data from multiple dataset in a chart?

I have the unit name and total employees in one dataset and approved employees for these units in another dataset. I cannot combain these two into one dataset. I need to use a ratio of approved employees / total employees for a these unit names in the chart as a stacked bar chart. Is it possible?

Thanks

Lavvu.

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-12-09 : 12:03:29
why cant you join them? are they from different servers? even then you can use ssis as source for report.

http://blogs.msdn.com/bimusings/archive/2006/07/19/671743.aspx
Go to Top of Page

lavvu
Starting Member

13 Posts

Posted - 2008-12-09 : 22:55:55
I cant join them because if i join these tables i wont be able to get the total number of employees in a unit. I will only get the total number of approved employees in a unit.
Go to Top of Page

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-12-10 : 03:00:45
quote:
Originally posted by lavvu

I cant join them because if i join these tables i wont be able to get the total number of employees in a unit. I will only get the total number of approved employees in a unit.


then use left join rather than inner join. this way you will get all employees detail regardless of whther they are approved or not.
Go to Top of Page
   

- Advertisement -