Conditional Formatting on IsRowVisible Row Header Format
Has anyone used conditional formatting with the IsRowVisible row header format property before? I am developing a cube view form that is driven by an account input parameter where the user selects an account to run the cube view. Depending on the account they select and a predefined condition, a given row should be suppressed/hidden (e.g. contains 611000). I am using the IsRowVisible row header format to try and accomplish this. However, it does not appear to be working properly. If we update the format property to something other than IsRowVisible (Bold = True), then the results are as expected. So I'm not sure why it's not working for this IsRowVisible format property. Perhaps I am missing something here? Thank you in advance for any tips you can provide!
Following is the condition set for example above. Account parameter is defined on Member Expansion 1.
If (RowE1MemberName Contains 611000) Then
IsRowVisible = False
Else
IsRowVisible = True
End If
