I have to pick the highest value from col 2 in relation col 1 using Tableau. The data is as follows
col 1 col 2
category 1 5
category 2 6
category 1 4
category 1 3
category 2 10
category 1 1
category 2 3
The desired solution is
col 1 col 2
category 1 5
category 2 10
I tried using the fixed aong with max function but in this case it outputs boolean value which I do not need. Could someone help me!
Thank you