Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 964581
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T01:51:08+00:00 2026-05-16T01:51:08+00:00

I have the following data (I have a lot more rows this is just

  • 0

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!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T01:51:08+00:00Added an answer on May 16, 2026 at 1:51 am

    You could group on the other columns, and check for the presence if P or B in a case statement:

    declare @t table (value char(1), Location varchar(50), fleet int, region int)
    
    insert @t values
        ('P',       'Pocatello, ID',        104,       232),
        ('B',       'Pocatello, ID',        104,       232),
        ('B',       'Spokane, WA',          107,       232),
        ('B',       'Spokane, WA',          107,       232);
    
    select  case 
                when max(case when value = 'P' then 1 end) = 1 
                     and max(case when value = 'B' then 1 end) = 1 then 'Production' 
                when max(case when value = 'P' then 1 end) = 1 then 'Productivity' 
                when max(case when value = 'B' then 1 end) = 1 then 'Reporting' 
            end
    ,       location   
    ,       fleet
    ,       region
    from    @t
    group by
            location   
    ,       fleet
    ,       region
    

    This prints:

    (No column name)    location        fleet   region
    Production          Pocatello, ID   104     232
    Reporting           Spokane, WA     107     232
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have following data frames > head(elo) date elo 1 1921-12-18 1597 2 1922-05-14
I have following data structure (simplified): A giant list of the class TestClass public
I have following data to save in database using php my data is :
I have following data in my table. alt text http://img26.imageshack.us/img26/3746/productfield.png I want to extract
I have following data in excel table r1 r2 r3 r4 r5 v1 v2
I have following data in a file called binFile 78 1 79 4 80
I have following data: a=[3 1 6]'; b=[2 5 2]'; c={'ab' 'bc' 'cd'}'; I
I have the following data inside an NSData object: <00000000 6f2d840e 31504159 2e535953 2e444446
I have the following data from 2 tables Notes (left) and scans (right) :
I have the following data X Y INFTIME 1 1 0 1 2 4

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.