I am using the Text Parser module in Make.com to extract content from an HTML table. The parser provides me with a nested array as output, as shown in the attached screenshot. My goal is to access the deeper values (e.g., “Frau” or “test”) and write them into a Google Sheet.
Challenges
- The Text Parser seems to only process the first collection (e.g., “Anrede”) under “Rows” and ignores the subsequent collections (e.g., “Vorname”).
- I am unable to use custom JavaScript functions or tools like
function
in Make.com. - Even when using an Iterator, I can only iterate over the first level of the array. Accessing the second collection (e.g.,
Rows[2]
orColumns[2]
) does not work.
I want to access all values from the output, not just the first collection. Specifically:
Frau from Rows[1].Columns[1].Rows[1].Columns[1]
test from Rows[2].Columns[2].Rows[1].Columns[1]
How can I access the deeper values in the array (e.g., the second collection)?