Conditional field display on drilldown

Hi, I have a measure of count for example

  • Number of tests failed
  • Number of tests passed

When I drill down to tests failed in a report, I Would like to see certain details example : Field 1, Field2

and when I drill down to tests passed it should display :Field 3, field 4.

Can anyone guide how this can be achieved?

0 1 100
1 REPLY 1

This is achieved by using

  measure: test_failed {
    type: count
    drill_fields: [Field1, Field2]
  }
  measure: test_Passed {
    type: count
    drill_fields: [Field 3, Field 4]
  } 

Thanks

Top Labels in this Space
Top Solution Authors