21-11-22 03:22 PM
Hello,
i tried to insert my collection into Excel. The Problem is that the collection contains 3k rows and 82 columns and the process tooked too long. So i solved it with "Get Collection as CSV" -> "Write Text File" -> "Import CSV" what tooks like 1 Second.
The Problem is, that i have to delete the old Header from the the Textdata "Collection CSV as Text" or insert the Collection without the header. I tried to replace "Column ([0-99]+)" with "" an then Trim the start but that does not work.
Otherwhise the CSV has a row too many.
I hope you can help me.
22-11-22 03:03 PM
22-11-22 03:49 PM
23-11-22 11:45 AM
I think i found the Problem.
My Get Worksheet as Collections sets alle Columns to Datatype Text, so i had to convert my number values to text to insert it into the collection.
I tryed write collection fast with number and text and as you can see, the text value ist not right.
I will Copy my Collection in a second one, where the Data types are correct. A little bit annoying cause of the 82 columns but it will help,
Is there a way to get a collection without each field being a text? I added the collecton without the header and set the number fields to Data Type Number in the Excel data. But Columns are still Text
23-11-22 03:08 PM
Dim value = range(i, j).Text
Cheers,
Eric
24-11-22 02:00 PM