Looking to sum these two cells...
1,2,3,4,5
3,4,5,6,7
...such that the output is (in a single cell, comma delimited):
4,6,8,10,12
Really just iterating through the indices of each list (index 0 of list one + index 0 of list two, index 1 of list one + index 1 of list two, etc.) and keeping the x,y,z format with comma delimiters.
I appreciate the help!