Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a query. I have column chart. When I select one of the element of it (Ex. Y axis has month Jan to Dec). When I select one of the month, rest months get invisible. only one month bar column shows. do we have option that if we select any bar , rest should be visible but in deactivated format. As in filter we select any value unavailable shows in Grey background.
Thanks in advance.
Hi Narendra ,
set the below expression to background color ,
if(isnull(only([Field name])) ,ARGB(20,200,200,200),ARGB(190,43, 123, 70)).
Regards,
Murali Mohan.T
Hi All,
I think I am unable to explain correctly. Please find following images.
* This is my Qlikview chart.
* When I click on "b" column bar. It look like this.
* I want chart like this.
Please help on this.
You have to:
=If(WildMatch(GetFieldSelections(Month), Month), RGB(180, 180, 180))
This assumes the chart dimension is a field named "Month". Adapt this to your specific requirements.
If you need more specific help, you will need to provide more details, such as the dimension and expression of the chart, or better still, a small qvw containing sample data and the chart you would like to modify.
hi, I tried it. but does not work. showing same result.
I have considered that your bar chart is having below
Dimension
InvoiceMonth
Expression
SUM(Sales)
To achieve your requirements..
Use Expression as below
SUM({<InvoiceMonth>}Sales)
Use below as Expression background color..
IF(GetSelectedCount(InvoiceMonth)<>0,
IF(InvoiceMonth = GetFieldSelections(InvoiceMonth),Green(),LightGray()))
If you want to show multi color when no month is selected, go to colors tab and Tick Multicolored.
Note : Change your field name and expression accordingly.
Hope this is what you are looking for..
If you want multiple months selection and want to show all of them as green.. use as below
IF(GetSelectedCount(InvoiceMonth)<>0,
IF(SubStringCount(GetFieldSelections(InvoiceMonth),InvoiceMonth),Green(),LightGray()))
Try like this : Right Click on chart > Select Set Reference that should work in your case
Try like this : Right Click on chart > Select Set Reference that should work in your case