Is it Possible to Order the Views that are JOINed in an Explore?

PaulM1
New Member

Given the following Explore:

explore: foobar {

  join: foo {
    ...
  }

  join: bar {
    ...
  }
}

When users navigate to the FooBar Explore, the Views will be in alpha order from top to bottom:

  • bar
  • foo
  • foobar

Is it possible to manually order these with out relabeling them? Perhaps to:

  • foobar
  • foo
  • bar

I have yet to find anything in the docs. Thank you!

Solved Solved
0 9 2,381
1 ACCEPTED SOLUTION

For that I use view_label with spaces to be able to order views as I want

image

something like:

explore: eeee_view {
view_label: "    EEE View"
  join: aaaa_view {
    view_label: "   AAAA View"
  }
  join: zzzz_view {
    view_label: "  ZZZZ View"
  }
  join: yyyy_view {
    view_label: " YYYY View"
  }
}

(and same for ordering Dimensions & Measures with group_label)

View solution in original post

9 REPLIES 9
Top Labels in this Space
Top Solution Authors