Hello All,
i would like to be able to choose field(s) which is in the multi row formula from outside of macro
in this example
---
IF([product_id]=[Row+1:product_id] AND [item_id]=[Row+1:item_id])
THEN "duplicated" ELSE "unique"
ENDIF
---
i would like to change the product id from outside of macro as store_no( it is also in dataset) so as result if i select to store no my multi row formula will be like this:
---
IF([store_id]=[Row+1:store_id] AND [item_id]=[Row+1:item_id])
THEN "duplicated" ELSE "unique"
ENDIF
my macro attached. if somebody help i will be much appreciated
Thanks