arvindnsn
2 years agoContributor
Route object value from a list of values
Hello, I have a Snowflake select Snap that outputs values of "ABC", "AEC", "ANC", "ABK", "AMT", "AGT". I have the output stored in a mapper variable called "src_name". In the next Router Snap, I h...
- 2 years ago
You can try:
['ABC', 'AEC', AMT'].indexOf($src_name) != -1
['ANC', 'ABK', AGT'].indexOf($src_name) != -1
BR,
Spiro Taleski