12-11-2019 10:57 PM
Hello All,
I have three channels X,Y and Z. I am looking for a way to sort channel X and accordingly move the values in Y and Z channels.
I have tried ChnMultipleSortExt but it just does it for 2 channels.
Any help is appreciated!
Thanks in Advance.
Solved! Go to Solution.
12-13-2019 12:36 AM
Hello Kandukuri_raghavendra,
Which DIAdem version do you use?
At least since DIAdem 2015 we support your request. Here is an example.
dim oChnX, oChnYZs
set oChnX = Data.Root.ChannelGroups(1).Channels(1)
set oChnYZs = Data.GetChannels("[1]/*")
oChnYZs.Remove(1) ' remove first channel which is the source channel
Call ChnMultipleSortExt(oChnX, oChnYZs, "Up", "UpperCase", 0)
Greetings
Walter
12-13-2019 11:02 AM
Thank you @Walter