I have a database where i have close to 20kcolumns... which is the output of a transpose procedure in SAS.
Is it possible to split the output of an SAStranspose into Multiple csv files?. Like can i push 3000 columns(keeping the #rows thesame) into 5 CSVfiles?.. How can i do this with a SAS Macro?.
Basically, there is a variable which has 20k values per customer. I need to create a file(s) where that variable should be in columns.. my original data is something like below:
CustID Variable Value 1 4 0 1 3 23 1 1 22 1 2 18 2 4 0 2 3 23 2 1 22 2 2 18
So after transpose, it becomes:
CustID Var1 Var2 Var 3 Var4
1 22 18 23 0
2 22 18 23 0
But problem is the "Variable" above has 20K values, so when transposed it becomes Var1 to Var20000.. which cannot fit in excel..
Any other way to handle this problem?.
I think Excel has a capacity of 16K columns, so i want to handle it in this way.. Please let me know how i can handle this situation