Slice (Filter Table) Based on Values in a Reference Table

I have two Tables Tracks {[Track Name], [Track Logo]} and Racing Days {Track Name], [Racing Date]}.

The intention is to show only the tracks that have a row with [Racing Date]= TODAY().

Tried many ways and no working.

Solved Solved
0 2 163
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Try:

IN(
  TODAY(),
  SELECT(
    Racing Days[Racing Date],
    AND(
      ISNOTBLANK([Track Name]),
      ([Track Name] = [_THISROW].[Track Name])
    )
  )
)

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4

Try:

IN(
  TODAY(),
  SELECT(
    Racing Days[Racing Date],
    AND(
      ISNOTBLANK([Track Name]),
      ([Track Name] = [_THISROW].[Track Name])
    )
  )
)

Thanks. Worked. Owe you a beer.

Top Labels in this Space