Hi,
I currently use this to determine if I have more than one of the same value per rows.
CNT: IIf(IsNull([Custlogocnt]),"",IIf(DCount("Custlogocnt ","tbltickets","[ Custlogocnt] = '" & [Custlogocnt & "'")>1,"MANY",""))
But it’s only looking at text values. How could this be revise to look at number values or even both regardless if number or text.
I currently use this to determine if I have more than one of the same value per rows.
CNT: IIf(IsNull([Custlogocnt]),"",IIf(DCount("Custlogocnt ","tbltickets","[ Custlogocnt] = '" & [Custlogocnt & "'")>1,"MANY",""))
But it’s only looking at text values. How could this be revise to look at number values or even both regardless if number or text.