I have the following data (I have a lot more rows this is just an example):
VALUE Location FLEET REGION
P Pocatello, ID 104 232
B Pocatello, ID 104 232
B Spokane, WA 107 232
B Spokane, WA 107 232
In either reporting services or MSSQL I need to group by fleet. Afer it is grouped I want it to see what values each group contains.
If the group contains values P and B then its Production If the group contains B only then it is Reporting If the group contains P then its Productivity
What I want from this example is the following rows to be returned in the end.
VALUE LOCATION FLEET REGION
Production Pocatello,ID 104 232
Reporting Spokane, WAS 107 232
Right now the SQL query reports the data at the top of my quesiton. I need to either do the grouping and calculation is MSSQL or SSRS either one will work but how do I go about doing it to get the data listed like I have right above.
Thanks!