Hi @ll,I'm trying to change all comma's in a table with point so I can load the table in excel without any problems.I want to create a short script to replace all comma's to points, but it isn't working.I'm pretty new to scripting and trying to help myself (especially via W3schools) so my question may be a bit "simple/stupid" At first i've tried this code:
var Table = document.getElementById('members');Table.replaceAll(",", ".");
But it doesn't work this way. Probably because the complete table is not a string? Currently I have this code:
var Table = document.getElementById('members');var r