I am trying to match a large amount of data and identify offsets. We have SUMIF functions for this in excel I need help with converting into Alteryx.
This formula is for our duplicate identifier (which identifies if one item has a "matching offset")
Text: =IF(SUMIFS(D:D,D:D,-D593,C:C,C593)<>0,"Y","N")

And this formula is simply for the text direction of "Match" or "Partial Match" - I'd like to get both of these functions into Alteryx for mass, aggregated data comparisons:
Text: =IF(G593="Y",IF(SUMIFS(D:D,C:C,C593,G:G,"Y")<>0,"Review for Partial Match","Match"),"No Match")

Thanks in advance to any and all who are able to assist.