I have 2 Splunk Queries First Query will return the Employee ID of the Active and Retired Employees. Second Query will return the Employee ID of the retired Employees. I want to merge both the queries to get the result of only the Active employees. by removing the Retired_Employee_ID from the list of Employee_Id Query1) index=employee_data | rex field=_raw <regular expression used to extract Employee_ID>offset_field=_extracted_fields_bounds | table Employee_Id Query2) index=employee_data | rex field=_raw <regular expression used to extract Retired_Employee_ID>offset_field=_extracted_fields_bounds | table Retired_Employee_ID
... View more