View Single Post
 
Old 03-23-2024, 01:03 PM
ArviLaanemets ArviLaanemets is offline Windows 8 Office 2016
Expert
 
Join Date: May 2017
Posts: 949
ArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant futureArviLaanemets has a brilliant future
Default

A simpler way:

1. Read your original table (or values from columns you want to transfer) into (starting from row from where to read data without headers) array variable;
2. Create an empty text file with a name you want on destination you want;
3. In For cycle (from 1st row of array to last one), read 1st array row and create a string form all array values in this array row, plus a code for next row at end of string;
4. Write the gotten string into text file;
5. Repeat the cycle of p3 and p4 until end of For cycle;
6. Save the text file.
Reply With Quote