Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Conditional show of expressions in QV10

Dear All,

I have to show and hide expression in a straight table,based on the user selection from a list box. In Qv11 we have option for that. Bt is there in any possible to achieve the samein Qv10?

Thanks in Advance..

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

I found the solution..since it is a straight table.it has conditional option available in Presentation Tab.

Thanks

View solution in original post

3 Replies
tresesco
MVP
MVP

Unfortunately Not. However, alternate solution could be using multiple similar charts with conditional appearance.

jagan
Partner - Champion III
Partner - Champion III

Hi Reena,

You can try using Macro

Sub ShowHideExpression()

  set chartObj = ActiveDocument.GetSheetObject("CH01")

  set chartProp= chartObj.GetProperties

 

  set expr = chartProp.Expressions.Item(1).Item(0).Data.ExpressionData

  expr.Enable = False // Hides First expression

  set expr = chartProp.Expressions.Item(2).Item(0).Data.ExpressionData

  expr.Enable = True // Displays Second expression

End Sub

Regards,

Jagan.

Not applicable
Author

Hi,

I found the solution..since it is a straight table.it has conditional option available in Presentation Tab.

Thanks