Home > OS >  Can I read other than the first sheet with the Read Delimited Spreadsheet.vi function in LabVIEW?
Can I read other than the first sheet with the Read Delimited Spreadsheet.vi function in LabVIEW?

Time:03-15

I am using Read Delimited Spreadsheet.vi in LabVIEW and need to read data from other than the first sheet. How do I tell LabVIEW that want to use other than the first sheet?

CodePudding user response:

CSV files are plain text files and there are no multiple sheets inside. Sheets are present within Excel files, but this function "Read Delimiter Spreadsheet" does not work with these.

CodePudding user response:

Unfortunately LabVIEW still doesn't have built-in support for reading Excel files as far as I know, although it can write them with the Save to Measurement File express VI.

There are third-party toolkits available for reading Excel files in LabVIEW, or you might be able to use some Python code with openpyxl or pandas.

  • Related