You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because when saving a CSV file, node red will append a new row with "end". This causes a problem where your data will not look right if you save multiple times within a session.
The workaround is the only save data at the end. If you need to modify it, close the export/import data menu. Enter the filename into the import data text field and then open the file, then perform more editing there.
The solution is to change the way python reads the file data from using a while loop to using a for loop to receive the data. This way there won't be a need for the "end" row and thus it can be removed from node-red. This change has not been implemented as of 23/02/2022
The text was updated successfully, but these errors were encountered:
Because when saving a CSV file, node red will append a new row with "end". This causes a problem where your data will not look right if you save multiple times within a session.
The workaround is the only save data at the end. If you need to modify it, close the export/import data menu. Enter the filename into the import data text field and then open the file, then perform more editing there.
The solution is to change the way python reads the file data from using a while loop to using a for loop to receive the data. This way there won't be a need for the "end" row and thus it can be removed from node-red. This change has not been implemented as of 23/02/2022
The text was updated successfully, but these errors were encountered: