Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 NetSuite 保存的搜索表达式从字段中提取前六个字符。例如,如果字段“DCBB18-271-LG”我希望结果只显示“DCBB18”
谢谢!
伊姆兰
您应该能够使用Result 列中的SUBSTR表达式来完成此操作。Formula (Text)
SUBSTR
Formula (Text)
例如,如果您想要 field 的前六个字符{upccode},那么您的公式将如下所示:
{upccode}
SUBSTR({upccode}, 0, 6)
您可以通过查看标题为 的 NetSuite 帮助页面来查看可以在公式中使用的其他 SQL 函数SQL Expressions。
SQL Expressions
高温高压