Hi,
I'm using a formula below to determine if the formula is unique. If the ID is unique, then write 1, if repeat then 0. All values are in a table with 100k+ lines and the formula seems to extremely resource intense...
Does anyone know if there is a more efficient way of calculating unique values?
I'm using a formula below to determine if the formula is unique. If the ID is unique, then write 1, if repeat then 0. All values are in a table with 100k+ lines and the formula seems to extremely resource intense...
Does anyone know if there is a more efficient way of calculating unique values?
Code:
=IF(COUNTIF($X$2:X2,[@[WEB_ID]])>1,0,COUNTIF($X$2:X2,[@[WEB_ID]]))