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

different color for Sheet's tab in activation and inactivation modes

Hi,

I would like to show the sheet's tab in  two different colors while it is in activation and inactivation modes.

Is it possible..can anyone help me on this.

Regards,

Sankar

1 Solution

Accepted Solutions
sbaldwin
Partner - Creator III
Partner - Creator III

Hi, you could use a calculated dab colour using formulas like if('$(=GetActiveSheetId())' = 'Document\SH03',rgb(0,255,0)) for each sheet, eg attached.

Thanks

Steve

View solution in original post

3 Replies
sbaldwin
Partner - Creator III
Partner - Creator III

Hi, you could use a calculated dab colour using formulas like if('$(=GetActiveSheetId())' = 'Document\SH03',rgb(0,255,0)) for each sheet, eg attached.

Thanks

Steve

johnw
Champion III
Champion III

You don't need the dollar sign expansion, but yeah, that seems like the best way to handle it.

=if(GetActiveSheetId()='Document\SH01',rgb(0,255,0))

Not applicable
Author

Hi Steve,

Thanks for your answer. The solution is working fine.