Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
NSC | Saved Search Formula to Extract Characters of a String
Scenario
User needs to create a Saved Search formula to extract the first 4 characters of a string..
For example, the string is "netsuite". The needed result is only "nets".
Solution
Use the SUBSTR function to extract the desired substring.
Formula: SUBSTR({fieldid}, 1, 4)
Explanation:
- {fieldid}: Represents the field containing the string from which you want to extract the first 4 characters.
- SUBSTR({fieldid}, 1, 4): This formula extracts a substring from {fieldid} starting from the first character (index 1) and extending for 4 characters.
You can modify the variables in the formula depending on your need. For example, you need the first 5 characters starting from the 3rd character, then just change the numbers in the formula to SUBSTR({fieldid}, 3, 5)
Learn how to Refer A Member | Earn the Answer Accepter Badge | Be the Content Creator of the Quarter | Vote for the content you want to see!
Tagged:
0
