cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X

SORT TABLE

BPP
7-Bedrock
7-Bedrock

SORT TABLE

Hello everyone.
I have extensive tables with data with which I must do repetitive operations, I have managed to make the calculations automatically in mathcad and obtain a table with the results. What I can't do is sort the final table to sum one of the result columns.
I attach the file in Mathcad Prime with the table of results that I obtained and with the ordered table that I need to obtain.

I hope you can help me, in advance thank you very much for the help.

1 ACCEPTED SOLUTION

Accepted Solutions
Werner_E
24-Ruby V
(To:BPP)

Here is a function which, as I believe, does what you are looking for:

Werner_E_0-1610067723372.png

Prime 6 worksheet attached

 

View solution in original post

17 REPLIES 17
tietjee
14-Alexandrite
(To:BPP)

Try using the sort functions.

I don't think that Mathcads sort functions will suffice to do the task, some programming will be required.

 

Fred_Kohlhepp
23-Emerald I
(To:BPP)

All I can see are two EXCEL tables.  How did you get the second (right) table?  Was that order generated in Mathcad?  Where are those calculations?

LucMeekes
23-Emerald III
(To:Fred_Kohlhepp)

The second table is a picture, looks like a screenshot from Excel.

 

Luc


@LucMeekes wrote:

The second table is a picture, looks like a screenshot from Excel.

 

Luc


No, its an Excel component, too. But without any in/output from/to Mathcad

LucMeekes
23-Emerald III
(To:BPP)

Use the csort() function (look it up in the help):

LucMeekes_0-1609959211756.png

Repetitively using the csort on different columns  - may - get what you need.

 

Success!

Luc

Note, that the result table uses some rows multiple time.

That result table is kind of connecting different paths which may contain partially equal subpaths

Werner_E
24-Ruby V
(To:BPP)

I wonder why you don't do the necessary calcilations and table build-up in Excel with a bit of scripting.

As I understand you provide an Excel table, want Mathcad do the build-up of a new table and write it back to another Excel sheet, right?

 

Du you really need the table as you had shown (I don't think that Mathcad can create an Excel sheet with combined cells as you use for your sums.

Would it suffice to create a table like

Design. 100; Start 0; End 21; SUM 0.257

Design. 101; Start 2; End A;  SUM 0.186

Design. 101; Start 2; End B; SUM 0.431

.....

Or do you need all the hops and values from COL-A and COL-B

 

COL-C seems unnecessary as its just the difference between COL-A and COL-B, so the values could be calculated rather than taken from a table.

 

Why does DESIGN. 204 not showing up in your second table?

 

A further question:

Can we assume that within every DESIGNATION every "path" starts with the same number? For example, both paths for 102 start with 10 and all three paths for 103 start with 6.

 

 

BPP
7-Bedrock
7-Bedrock
(To:Werner_E)

First of all thank you all for your comments.

 

Regarding inquiries:


1. the data tables that I have are in excel and are like the ones shown in the table on the left of the attached file, with the difference that it contains more columns that I use to do other operations between them, which I did with mathcad and that is why I intend to do everything directly in that program. However, if ordering the table so that it looks like the table on the right of the attachment is more complicated than I thought using mathcad, I would have to choose to try to do it directly in excel using programming as stated.
2. The sums column does not need to be in a merged cell. It is enough to create a table with the designation, the starting and ending cells, and the sum of the COL-C column, ignoring the COL-A and COL-B columns.

        Design. 100; Start 0; End 21; SUM 0.257

        Design. 101; Start 2; End A;  SUM 0.186

        Design. 101; Start 2; End B; SUM 0.431

The colors used and the detail shown in the target table (right) is so that I can better understand what I want to achieve.
3. Designation 204 should be included in the target table (right), it is not included due to an error when copying it to the attached file.

4. Within each designation, each path begins with the same number in all cases. All paths in 102 start with 10 and all paths in 103 start with 6.

 

LucMeekes
23-Emerald III
(To:BPP)

You shouldn't need programming in Excel to get the sorting on multiple columns that you need. A single sort can involve multiple successive columns.

 

Success!

Luc

As already written above I fear that more is needed than a simple resorting of the table!

Werner_E
24-Ruby V
(To:BPP)

Here is a function which, as I believe, does what you are looking for:

Werner_E_0-1610067723372.png

Prime 6 worksheet attached

 

BPP
7-Bedrock
7-Bedrock
(To:Werner_E)

It works perfectly, thank you very much Werner.
Werner_E
24-Ruby V
(To:BPP)

Glad I could help.

As long as the input data is "well behaved",  the functions should work, but there is no error checking built-in.

It may be a good idea to sort the IDs by changing the second line in mkNewList to IDs<--sort(delDupes...).

 

 

BPP
7-Bedrock
7-Bedrock
(To:Werner_E)

I incorporated the "sort()" function to sort the table in ascending order based on the first column as you suggest, again thanks for the help.

Werner_E
24-Ruby V
(To:BPP)

Please also note that during testing the ORIGIN-awareness of my functions I changed ORIGIN to different values and the sheet I posted is now set to ORIGIN=1 instead of ORIGIN=0.

BPP
7-Bedrock
7-Bedrock
(To:Werner_E)

Ok,  thank you very much.

Top Tags