Skip to main content
New Idea

Company Search Configuration Filters

Related products:None

gunjanm

I recently enabled CSM as a field searchable up top, so a CSM or their manager could type in a CSM’s name and options would show their portfolio. However, I would like to include only Status = Active, as in exclude Churned customers. There is no way to do this right now, making this a little noisy in the end!

15 replies

gunjanm
Forum|alt.badge.img+13
  • Author
  • Expert ⭐️
  • 523 replies
  • September 30, 2020

jean.nairon
Forum|alt.badge.img+4
  • Expert ⭐️
  • 421 replies
  • October 1, 2020

Good idea! Does search show all accounts the CSM is assigned to?


sai_ram
Forum|alt.badge.img+1
  • Expert ⭐️⭐️
  • 3727 replies
  • January 13, 2021

@gunjanm and @jean.nairon Thanks for sharing this here. Our product team is looking into this, I will update you here once I hear from them. 


gunjanm
Forum|alt.badge.img+13
  • Author
  • Expert ⭐️
  • 523 replies
  • January 13, 2021

@jean.nairon yup that’s exactly how it functions, along with any Customer names that might be applicable too. Filters on the search configuration would be more than amazing though. 

  
End Proctoring-
 

jean.nairon
Forum|alt.badge.img+4
  • Expert ⭐️
  • 421 replies
  • January 13, 2021

@gunjanm - can you un-assign churned accounts or just mark the CSM name in a text field so you can remove the assignment?


gunjanm
Forum|alt.badge.img+13
  • Author
  • Expert ⭐️
  • 523 replies
  • January 14, 2021

@jean.nairon unfortunately not, due to multiple product lines and only some of them being in Gainsight but the data of others still surfacing in Sally Quick Insights reports. It’s a complicated team and product structure!

  
End Proctoring-
 

sarahmiracle
Forum|alt.badge.img+10
  • VIP ⭐️⭐️⭐️⭐️⭐️
  • 356 replies
  • September 24, 2021

Excluding churned from the search in general would be great -- or at least, a more dynamic search that the CSM could choose to enable seeing Churned customers in the search result return but by default they are excluded.


gunjanm
Forum|alt.badge.img+13
  • Author
  • Expert ⭐️
  • 523 replies
  • September 26, 2021
sarahmiracle wrote:

Excluding churned from the search in general would be great -- or at least, a more dynamic search that the CSM could choose to enable seeing Churned customers in the search result return but by default they are excluded.

YES exactly


gopal_rao_kallepu
Forum|alt.badge.img

We are planning to enhance the Global search configuration to include such default filters, this is in our roadmap. Will share more details once we pick this up.
Thanks for sharing thi@gunjanm .
@everyone Please upvote if this impacts you, and help us prioritise this appropriately 


Forum|alt.badge.img+6
  • Gainsight Employee ⭐️
  • 4 replies
  • October 5, 2022

@gopal_rao_kallepu is there any update on this? Many Admins desire this filtering, for a variety of use cases, although the end goal is to filter out unwanted listings in the Company Search. 


Jef Vanlaer
Forum|alt.badge.img+2
  • Helper ⭐️⭐️
  • 187 replies
  • August 24, 2023

Getting more and more requests to exclude churned/inactive Relationships from the Company/Relationship search as well (which makes sense if you are using Gainsight for some time already). Would be nice if this idea could be considered for implementation…

@gopal_rao_kallepu Any updates here?


anton_vinny
Forum|alt.badge.img+4
  • Gainsight Employee ⭐️
  • 20 replies
  • August 24, 2023

@Dheepak G  Tagging you since Gopal left.


Dheepak G
Forum|alt.badge.img
  • 31 replies
  • August 24, 2023

A quick update on this thread on the search capabilities, We are currently working on revamping the search experiences in below phases :
1) End User revamp of search experience : Currently in development  this quarter
2) Admin revamp of search configurations : This would be taken post our first phase of revamp. As apart of this revamp, we are going to allow  Admins the ability to filter records out [from index] based on certain conditions (in this case, company = ‘Active’).
I will keep this thread updated when i have a timeline for this ask.


Dheepak G
Forum|alt.badge.img
  • 31 replies
  • August 24, 2023
No StatusPlanned

  • Contributor ⭐️
  • 2 replies
  • July 18, 2024

To refine the search functionality and ensure only active customers are included when searching for a Customer Success Manager (CSM) or their manager, you need to implement a filter that excludes churned customers. You can achieve this by modifying your database query to include a condition that filters out churned customers. Assuming you have a Status field in your customer records, your query should only select customers where Status equals Active.

For example, in SQL, your query would look like this:

SELECT *
FROM Customers
WHERE CSM_Name = 'Specific_CSM_Name'
AND Status = 'Active';

For a JavaScript-based UI, ensure the filter for Status is applied before displaying the results. Your search function might look like this:

function searchCSMPortfolio(csmName) {
    const query = `SELECT * FROM Customers WHERE CSM_Name = '${csmName}' AND Status = 'Active'`;
    fetchResults(query).then(results => {
        displayResults(results);
    });
}

 

Make sure the search interface is updated to reflect this filtering so that users understand only active customers are shown. This adjustment involves updating your backend code to filter out churned customers in the query and ensuring the frontend only displays results where the customer status is active.

By making these adjustments to your database queries and search logic, you can ensure the search functionality for CSM portfolios only includes active customers and lead data enrichment, thereby reducing noise and improving usability. If you provide more details about your tech stack or the specific environment you're working in, I can offer more tailored advice.


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings