Hello,
So I need for formulas to somehow ignore if next cell is duplicate and go down till it gets new value.
From table ABCDEG if any of them got value next to them I need that to show in order with no duplicates. Not if values are next to ACEG all i get is ACCEEG my target is to get ACEG-- and this should work with any combination and end up in alphabetical order. When i try to get them to go to other value if its same as itself I get circular references eventually. Can someone help with smarter formulas or other ways. Thank you.
Formulas:
IF(AC4>0,AA4,IF(AC5>0,AA5,IF(AC6>0,AA6,IF(AC7>0,AA7,IF(AC8>0,AA8,IF(AC9>0,AA9,""))))))
IF(AC5>0,AA5,IF(AC6>0,AA6,IF(AC7>0,AA7,IF(AC8>0,AA8,IF(AC9>0,AA9,"")))))
IF(AC6>0,AA6,IF(AC7>0,AA7,IF(AC8>0,AA8,IF(AC9>0,AA9,""))))
IF(AC7>0,AA7,IF(AC8>0,AA8,IF(AC9>0,AA9,"")))
IF(AC8>0,AA8,IF(AC9>0,AA9,""))
IF(AC9>0,AA9,"")
Bookmarks