Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
I have one infotable which returns plant names. I would like to generate infotable in a arithmetic way. I am able to sort ascending but I am trying to sort infotable in a arithmetic order but not able to find any snippets regarding arithmetic approach.
Solved! Go to Solution.
Hi I found a way for this approach,
I've created one datashape with additional field as number, then used parseInt() to separate numerical values from PlantName field, and added those values as separate entry in new infotable along with the PlantName values.
After adding that, I used sort functionality from InfoTableFunctions sorted numbers field ascending isTrue.
Able to get expected output.
Hope this will be useful for someone someday !!
Hi I found a way for this approach,
I've created one datashape with additional field as number, then used parseInt() to separate numerical values from PlantName field, and added those values as separate entry in new infotable along with the PlantName values.
After adding that, I used sort functionality from InfoTableFunctions sorted numbers field ascending isTrue.
Able to get expected output.
Hope this will be useful for someone someday !!