Using aggregate input in json to create an html code

Hi @Issa2024,
if you want to convert your data to an HTML table you can use a sequence of these nodes:

  • Convert to File (operation Convert to HTML): this converts the JSON data to an HTML file with a table in it
  • Extract from File (operation: extract from text): this will actually extract the HTML code out of the file
  • HTML (operation: Extract HTML content):; this can extract only the table out of the whole HTML page

See this workflow as an example:

Your original data has nested fields that aren’t represented easily in a table, I suggest manipulating your data to come with a flat JSON (without nested fields). See the branch with the “Flat JSON” node in the example.

Hope this helps :slight_smile:

2 Likes