Search found 7 matches

by Anonymous47
Thu Feb 26, 2015 8:28 pm
Forum: XLSReadWritwII 6
Topic: Sort Columns?
Replies: 6
Views: 4025

Re: Sort Columns?

Push
by Anonymous47
Thu Feb 19, 2015 9:05 pm
Forum: XLSReadWritwII 6
Topic: Sort Columns?
Replies: 6
Views: 4025

Re: Sort Columns?

You dont understand me. Small example: 23456 - - a - - 07.01.1900 43 - - f - - 01.01.1900 356675 - - df - - 02.01.1900 XLS[0].Sort(2,XLS[0].FirstRow,2,XLS[0].LastRow,TRUE,TRUE); Result: 23456 - - a - - 01.01.1900 43 - - f - - 02.01.1900 356675 - - df - - 07.01.1900 but it should be 43 - - f - - 01.0...
by Anonymous47
Mon Feb 16, 2015 3:35 pm
Forum: XLSReadWritwII 6
Topic: Sort Columns?
Replies: 6
Views: 4025

Re: Sort Columns?

I think you dont understand me. I will sort full rows, but not only ohne column of a row, and not column 1, but column 2 oder 3.
by Anonymous47
Thu Feb 12, 2015 8:03 am
Forum: XLSReadWritwII 6
Topic: Sort Columns?
Replies: 6
Views: 4025

Re: Sort Columns?

...
by Anonymous47
Fri Feb 06, 2015 1:33 pm
Forum: XLSReadWritwII 6
Topic: Sort Columns?
Replies: 6
Views: 4025

Sort Columns?

Only a little question:

I have a excel sheet with 3 columns.
How can i sort using column 2 oder 3?

XLS[0].Sort(0,XLS[0].FirstRow,2,XLS[0].LastRow,TRUE,TRUE);

only sorts using column 0.

Thanks for help.
by Anonymous47
Tue Nov 05, 2013 8:22 pm
Forum: XLSReadWritwII 6
Topic: Copy Sheet/Data/Cell from one file to another?
Replies: 2
Views: 2304

Copy Sheet/Data/Cell from one file to another?

Hi, how do i copy cells or rows from one Excel file to another, including formulas und formattings? Excample: var XLS1, XLS2 : TXLSReadWriteII5; begin XLS1.LoadFromFile('file1.xlsx'); XLS2.LoadFromFile('file2.xlsx'); for XLS1[0].FirstRow to XLS1[0].LastRow do begin // how to copy the rows to XLS2[0]...