Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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 |
| Shopper1 | Monday | Apple | |
| Shopper1 | Monday | Banana | |
| Shopper1 | Monday | Orange | |
| Shopper1 | Tuesday | Orange | |
| Shopper1 | Tuesday | Apple | |
| Shopper1 | Tuesday | Banana | |
| Shopper1 | Tuesday | Lime | New Item |
Thanks!!
Solved! Go to Solution.
@wsspglobal
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.
@wsspglobal
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.
Hi @wsspglobal
you can try LOOKUPVALUE() column like
New Item =
var _inMonday = LOOKUPVALUE('Table'[Shopper],'Table'[Shopper],[Shopper],'Table'[Item],[Item],'Table'[Day],"Monday")
RETURN
if(ISBLANK(_inMonday),"New Item",BLANK())
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 57 | |
| 44 | |
| 42 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 183 | |
| 114 | |
| 93 | |
| 62 | |
| 45 |