I have two text files as sources and I want to write a new file that is four rows long. I need:
- static text in row 1
- static text + data from source file #1 in row 2
- static text in row 3
- Static text + data from source file #2 in row 4
Example
Source File #1:
Bob
Larry
John
Source File #2:
100
345
23
Final Text
This is my Row 1 Text
My neighbor is Bob
00000000000000
He is 100 years old
This is my Row 1 Text
My neighbor is Larry
00000000000000
He is 345 years old
This is my Row 1 Text
My neighbor is John
00000000000000
He is 23 years old
Is this possible with VC using loops
I tried
Read File - Source #1
Read File - Source #2
(LOOP) Write File
But I cannot seem to work it out
Any ideas?
Edited by user
2021-06-23T19:31:48Z
|
Reason: Not specified