Saved search highlight if transaction date is grea...
# ask-stanley-ai
s
Saved search highlight if transaction date is greater than 14 days
c
AI generated answer (using internal Slack threads):
In NetSuite, you can't directly highlight rows in a saved search based on a condition. However, you can create a workaround by adding a formula field to your search that will display a colored text or symbol based on your condition. For your specific case, where you want to highlight if the transaction date is greater than 14 days, you can add a Formula (Text) field to your search with a formula like this:
Copy code
sql
CASE 
WHEN {transactiondate} > SYSDATE - 14 THEN '🔴' 
ELSE '' 
END
This will add a red circle emoji to the rows where the transaction date is greater than 14 days. You can replace the '🔴' with any text or symbol you prefer. Remember to set the Summary Type of this field to 'Group' so that it appears on each row of the search results. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.815324
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.814461291
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.81139338
Please provide your feedback on this answer.