Forum Discussion
greenawayr
5 years agoHelper I
Evaluate duplicate IDs on another column
Hi, Hope this makes sense, but if it does, appreciate any help. I have a table where I need to evaluate each set of duplicated ID's and output in a new column if that set meets a condtion. ...
- 5 years ago
you can also try this
Column = if(CALCULATE(min('Sheet2'[Date]),ALLEXCEPT(Sheet2,Sheet2[ID]))<today(),0,1)
amitchandak
5 years agoSuper User
greenawayr , create a new column like
if(isblank(countx(filter(table, [ID] = earlier([ID]) && [Date] <today()),[Date])),1,0)