Trying to create a slice for my item's current location

I have a table for scanning ITEMs and LOCATIONs with a TIMESTAMP.

I’m trying to create a slice that lists ITEMs with the most current TIMESTAMP and LOCATION, omitting the duplicates ITEMS in the table with older TIMESTAMPS.

I’ve danced around with MAX() and SELECTS() but the logic of making it work is escaping me.

Thanks for the help everyone!

Solved Solved
0 4 436
1 ACCEPTED SOLUTION

Good for you for implementing Current Location! Without it, using the previously suggested SELECT() expressions would be pretty expensive.

Try this as your filter expression:

AND(
  ISNOTBLANK([Location Key]),
  ([Location Key] = [Merch ID].[Current Location])
)

The ISNOTBLANK() (and consequently AND()) is not required if [Location Key] is guaranteed to be non-blank.

View solution in original post

4 REPLIES 4
Top Labels in this Space