Forum Discussion
Anonymous
6 years agoNot applicable
Detect new item in same column
Hi, I have a table like this, and I want to identify the new item that Shopper1 got compared to Monday. What would the formula look like in 'New Item' (Column D)? Shopper Day Item New Item...
- Anonymous6 years ago
Anonymous
You can set the variable to any daysNew column = Var Monday_= CALCULATETABLE(VALUES('Table'[Item]),'Table'[Day]="Monday") Var Tuesday_= CALCULATETABLE(VALUES('Table'[Item]),'Table'[Day]="Tuesday") return IF(Tuesday_ in Monday_,BLANK(),[Item])Paul Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
6 years agoNot applicable
Anonymous
You can set the variable to any days
New column =
Var Monday_= CALCULATETABLE(VALUES('Table'[Item]),'Table'[Day]="Monday")
Var Tuesday_= CALCULATETABLE(VALUES('Table'[Item]),'Table'[Day]="Tuesday")
return IF(Tuesday_ in Monday_,BLANK(),[Item])
Paul Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.