Hello Community,
Just a thought in my head as I have developed three different C# scripts to pull parameters (static) from 3 different .csv files to be synched into the same element.
Is it possible to have all as tabs in a single .csv file for a more seamless and efficient way of execution?
Hi,
I do not believe it is possible to do that with a CSV as those files are like basic text files and as far as I am aware have no way of encoding multiple tabs.
For that, you would need to either do some custom logic to encode that data or use an Excel file (or similar) that does support tabs.
Thanks Joao, yes was approaching it from the other excel formats.