Hi all & thanks for the support!
I'm in the process of creating a flow which takes a HTML email attachment and converts it to JSON. It captures the attachment via email > converts the contentBytes to a string > Replaces the column delimiter with '^' and row delimiter with '|' > Converts it to text > splits the text by each row > filters out rows containing 0 characters > splits and maps data to it's respect column.

After using the select data operation in the last step and mapping column names to data from the filtered HTML text output, I get this error:

After combing through the HTML text output, I found that there is a row with no data however only has a column delimiter which I believe is causing this error.

Is this the correct assumption and how can I remove this to not have this error?