Jump to content
We've recently updated our Privacy Statement, available here ×

Need filter based on field value - if contains, is in?


rtucci_1

Recommended Posts

 

I have a history report for incidents, the history table contains the lifecycle of the incident cases (who it was assigned to and when etc.)

The report needs to show all cases where a specific support group (value) exists. So if the field contains (X value) I need to see it.

I have tried Is Like or like, but it does not work, is there a "contains" SQL expression I can use?

Link to comment
Share on other sites

  • Replies 5
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

This is how i resolved my issue by using a nested query

HPD_AssignmentTracking."Case_ID" IN ( SELECT DISTINCT HPD_AssignmentTracking."Case_ID" FROM "dbo"."HPD_AssignmentTracking" HPD_AssignmentTracking WHERE HPD_AssignmentTracking."Case_Assigned_To_Group" = 'DOITT:Service Desk' )

This shows me all cases where a specific support group has been assigned.

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...