Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Calculate using filter

i have two tables 

 

First table has a date where citations were issued.

Second table has a date where officer was on a certain schedule.

 

The tables are joined by a unique ibm # 

 

i am trying to filter the data to show what shift the officer wrote the tickets on. I can get total citations written by the officer but if that officer works on a different shift it also produces the total for that shift as a total of the officer

ibmoffense_datecitation_number
jj22001/01/2022

1

jj22001/01/2022

2

jj22001/02/2022

5

aa42001/01/2022

3

aa42001/01/20224
aa42001/02/2022

6

 

ibmshiftshift start date
jj220a shift01/01/2022
jj220a shift01/02/2022
aa420b shift01/01/2022
aa420t shift01/02/2022
  • Create a calculated column on the Citation table

    Shift = 
    var offenseDate = Citations[Offense date]
    return SELECTCOLUMNS( TOPN( 1, 
       FILTER( RELATEDTABLE( Shifts ), Shifts[Start date] <= offenseDate ),
       Shifts[Start date], DESC ),
       "@shift", Shifts[Shift]
    )

2 Replies

  • Create a calculated column on the Citation table

    Shift = 
    var offenseDate = Citations[Offense date]
    return SELECTCOLUMNS( TOPN( 1, 
       FILTER( RELATEDTABLE( Shifts ), Shifts[Start date] <= offenseDate ),
       Shifts[Start date], DESC ),
       "@shift", Shifts[Shift]
    )
    • Anonymous's avatar
      Anonymous
      Not applicable

      Thank you that works