1. Merging User Data
Data AnalystBackground
I have two separate lists: one containing user names and another containing their respective account IDs.
Problem
I need to combine these into a single list of pairs to import into a database.
How to use
Paste the names array into Array 1 and the IDs array into Array 2, then run the tool.
Array 1: ["Alice", "Bob"], Array 2: [101, 102]Outcome
[["Alice", 101], ["Bob", 102]]