Hello,
I have three columns with data (shown with space delimiter) that look like:
Col1 Col2 Col3
--------------
x y y=6/x=7
a b a=9/b=4
p q p=6/q=8
r s s=6/r=4
I want to pick the high value for each row and have it output to the 4th column with information as to which Col has the high value. For the above example it would be
Col1 Col2 Col3 Col4
--------------------
x y x=6/y=7 Col2_high
a b a=9/b=4 Col1_high
p q p=6/q=8 Col2_high
r s s=6/r=4 Col2_high
Thanks!
Mika
I have three columns with data (shown with space delimiter) that look like:
Col1 Col2 Col3
--------------
x y y=6/x=7
a b a=9/b=4
p q p=6/q=8
r s s=6/r=4
I want to pick the high value for each row and have it output to the 4th column with information as to which Col has the high value. For the above example it would be
Col1 Col2 Col3 Col4
--------------------
x y x=6/y=7 Col2_high
a b a=9/b=4 Col1_high
p q p=6/q=8 Col2_high
r s s=6/r=4 Col2_high
Thanks!
Mika