Hello - I will try my best to explain my formula question. I am using DataTable to import a few hundred to a few thousand rows of data monthly into a targeted sheet. After 180 days from a specific date column, they roll off the targeted sheet.
My goal is to show the Unique Rows like the "delete duplicate" functionality in Excel but I don't want to delete the rows, I want just checkbox the first, and leave the rest unchecked. So I can use formulas to count those checked and filters for additional functionality.
Looking at the image below, I need to use a formula to check a box to show a row only if a unique ID column (basic join formula) and only once. The Unique ID is just a basic join formula from data to the right.
The formula in the Unique Row is: =IF(COUNTIF([Unique ID]$1:[Unique ID]@row, [Unique ID]@row) > 1, 0, 1)
This formula is working as I need it to however after I add 6,500 rows of information, my connection between DataTable and the targeted sheet stopped because I hit the 25,000,000 cell reference by formula limit. This formula is checking the cells above it if it matches and been matched before. With each additional row, it keeps growing and growing and thus I hit the limit.
Any help with creating a different formula that isn't building on itself, maybe one that's a column formula would be extremely helpful. I am open to adding additional helper columns as well.
I hope my request is clear enough and thank you for your help.
-Michael