I have used a mqtt csv parser to get comma delimited values of a variable into cast number values. I use the same variable name so im getting the same variables with different values. I need to assign now predetermined group values in order to see them all in a table widget. right know they are getting the same group values and I only see one of the values in the table. Can someone please help with the code to be able to see all values in one table
Well of course, you’re grouping all your inputs under the same variable AND under the same group/series. The widget will only display whatever data arrived last, as if the other values were crushed.
I don’t really get how’s your payload to begin with, but the case your described was that you wanted the keep the same variable, but have a different group for each input, right?
The easiest could be to add a number (perhaps an index?) to your group-timestamp while it’s in int form, then cast it to string. Altough, given how JS works you an just add a number to a string and should work lol.