-
Notifications
You must be signed in to change notification settings - Fork 1.3k
-
I have string index for the table(eg ticker) so only col() function works for me.
It would be convenient to have vlookup(), index() with string support.
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 1 comment
-
index() and vlookup() already work with strings:
const table = await worker.table(superstore, {index: "Order ID"}); const view = await table.view({ expressions: { "vlookup test": "vlookup('State', 'CA-2016-152156')", "index test": "index()" } })
Beta Was this translation helpful? Give feedback.
All reactions
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment