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!
NSC | REGEXP Formula for name format: ABC-1234
Scenario
User needs to create a Saved Search to identify all products whose SKUs follow a specific format: "ABC-1234"
- The first 3 characters are 3 upper case letters
- Followed by a hyphen
- and the last 4 characters are 4 digits
Solution
Use a REGEXP formula in your Saved Search Criteria to filter items based on the SKU format.
Formula used: REGEXP_SUBSTR({name}, '^[A-Z]{3}-[0-9]{4}$')
Explanation:
- ^[A-Z]{3}: Matches the start of the SKU followed by exactly three uppercase letters.
- -[0-9]{4}$: Matches a hyphen followed by exactly four digits, then the end of the SKU.
This formula ensures that SKUs must start with three uppercase letters followed by a hyphen and four digits, adhering to the specified format "ABC-1234". The Saved Search will return all products that match this pattern, allowing you to easily manage and analyze your inventory based on SKU format.
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
