Forum Discussion

osinquinvdm's avatar
osinquinvdm
Icon for Advocate II rankAdvocate II
9 years ago
Solved

Issue with many-to-many relationship

When the users are looking at event details they would like a simple selector for filtering on today/this week/this month/this year/all.   My idea is to create a column called "temporality" that as...
  • SqlJason's avatar
    SqlJason
    9 years ago

    For this to work, you will have to use a measure in your grid. Unless you have a measure, you will keep getting this error message. 

    Try creating a simple measure like 

    Test = countrows(EventTable)

     

    Then add Temporalitie, Event and the Test measure to a grid, and you should get the result. 

  • fiveone's avatar
    fiveone
    9 years ago

    Hey, you are right! That tricks work. It's like if we were forcing one of the table to be the fact table and then tadam it knows how to use the lookup tables to get the aditional details.

     

    Thanks for the trick SqlJason, you rock!