Hi Fred,
This is because you’re trying to insert a list of JSON objects directly into text — and n8n doesn’t automatically turn that into something human-readable.
If you just want to show the full data (all rows), you can turn it into a string like this:
{{ JSON.stringify($json.unmatched, null, 2) }}
This will convert the list of rows into readable text
or you if If you want to format it nicely, try:
{{ $json.unmatched.map(x => Navn: ${x["[\"navn\"]"]}, Konto: ${x["[\"Konto nummer\"]"]}, Beløb: ${x["[\"beløb\"]"]}).join(‘\n’) }}
You will get an out put like:
Navn: Overført resultat fra tidligere år, Konto: 4700, Beløb: 52391.45
Navn: Regulering udskudt skat, Konto: 4970, Beløb: 5000
That’s already structured, as you can see in the result, it has \n for every data break, and \n\n for every section break.
the \n mean creating new line, you can try it either with chat node or something else