Hi ,
I am trying to create a table with values from two arrays
arr1[str1,str2,str30
arr2[val1,val2,val3]
desired table should be as
str1 - val1
str2 - val2
str3 - val3
and i have multiple such arrays in the json file input,
when i create the table i am getting as
str1-val1
str1-val2
str1-val3
str2-val1
str2-val2
str2-val3
str3-val1
str3-val2
str3-val3
can please help me what i should to do to get the desired output