I currently have a UDP stream of scoreboard data and I can parse it with CSV and JSON and then output it to a file that my graphics system can look at.
What I'm trying to do now, is sort that data based on a particular column's data. Done some Googling and tried a few things on here to no avail.
You can use the change node to sort the object using JSONata expression :J $$.payload^(name)
that would sort msg.payload by the property name. Adding < or > before name would set ascending or descending, to order by more properties just and property names separated by a comma
I would help more but you offer no data to give you a working example.