Hi Team,
I have extracted 3 CSV files from one cube using different views, Now i want to make a final CSV file using these 3 files using TI process.
how can i achive this in TM1.
Regards
Ashok
Data into Final CSV file
-
- Posts: 12
- Joined: Wed Jul 25, 2012 6:15 am
- OLAP Product: Cognos TM1
- Version: 9.4.1
- Excel Version: 2003
- qml
- MVP
- Posts: 1096
- Joined: Mon Feb 01, 2010 1:01 pm
- OLAP Product: TM1 / Planning Analytics
- Version: 2.0.9 and all previous
- Excel Version: 2007 - 2016
- Location: London, UK, Europe
Re: Data into Final CSV file
The easiest way is to combine the files using the copy DOS command e.g.:
You could also have a single source view instead of 3 and just create one csv to start with (unless really not possible).
Code: Select all
ExecuteCommand ('copy file1.csv+file2.csv+file3.csv finalcsv.csv', 1);
Kamil Arendt