Forum Discussion

NitishKrishB's avatar
NitishKrishB
New Contributor II
6 days ago
Solved

Is there a way to hide/show columns based on combo box value selection?

Here is the scenario: I have a Combo Box that holds value "Summary View" and "Detailed View".  Based on the combo box selection value in the dashboard, the CV columns needs to update dynamically in ...
  • db_pdx's avatar
    6 days ago

    Hi NitishKrishB: this can be achieved with standard header formats and a simple conditional logic check.

    In the variance column of your cube view > Header Format:

    If (|!YourComboBoxParameter!| = 'Summary View') Then
        IsColumnVisible = False
    End If