jqGrid with Custom sorttype

Probably you read about the usage of sorttype as a function in Tony’s answer to my thread http://www.trirand.com/blog/?page_id=393/help/custom-local-sort-with-respect-of-the-function-as-index/. Your problem could be very easy solved. My suggestion to use index as a function for custom sorting of local jqGrid data work fine in the version 3.7.1, but not more in the version 3.7.2 of jqGrid. … Read more

Code an Excel VBA sort with a custom order and a value containing commas

It seems to be missing the Apply. Can you Add MyWorksheet.Sort.Apply The custom order you have is working as is in my sample. EDIT Updated based on OP updated question Edit the macro to the following – using an array for the OrderCustom parameter. Dim oWorksheet As Worksheet Set oWorksheet = ActiveWorkbook.Worksheets(“Sheet1”) Dim oRangeSort As … Read more