Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need to create two tabs: 'Rentable Area' and 'Parking Area' and when one tab will click a table box will appear and when another tab clicks a bar chart will appear in the same place. Also in the same time when a tab will be clicked another tab will be in-active and vice versa. What to do now?
Hi,
Please see attached file.
1) You need to create a variable - e.g. vSUBTAB
2) Add two text objects -
for each text object - goto properties>actions>add>set variable
In text object 1 - set variable vSUBTAB value =1
and text object 2 - set variable vSUBTAB value =2
3) For Table Box object - go to properties > layout -select conditional show and add this condition
vSUBTAB=1
4) For bar chart object -
go to properties > layout -select conditional show and add this condition
vSUBTAB=2
Now if you click on first text object your Table box will appear and if you then click on second text object the bar chart will appear and table box will be hidden.
5) To get tabs to appear active/ inactive : add conditional background colour and font :
In text object 1 - go to properties>general> click colour button and add expression
=if(vSUBTAB=1,rgb(128,128,128), rgb(204,204,204))
now go to font tab>colour > add expression:
=if(vSUBTAB=1,rgb(255,255,255),rgb(54,54,54))
In text object 2 -
go to properties>general> click colour button and add expression
=if(vSUBTAB=2, rgb(128,128,128), rgb(204,204,204))
now go to font tab>colour > add expression:
=if(vSUBTAB=2,rgb(255,255,255),rgb(54,54,54))
Hope this helps!
Please look into the link.
sakisoft.co.uk/QVPodcast.html
Hi,
in video i have seen that the corner of the text box object can be rounded or straight. I am using Qlikview 11, but I did not seen anything like that. Can u tell me how can I enable this feature in qlikview for textbox object?
In the document properties, tab General, change "Styling Mode" to Advanced.
Hi,
You can see attachment and click on 'Rentable Area' and 'Parking Area'
Actually I have QlikView personal edition. So I cannot open your .qvw file.
So i am requesting you to give me some screenshot with proper direction, so that I can follow it.
Thanks,
Sandip Ghosh
Hi,
You can create the variable, goto ctrl+alt+v -->> add these .
vTable=1
vTable=2
After that, you can create 2 text objects,
In 1st text object
In 2nd text object,
If you can press 1st text object like this,
If you can press 2st text object like this,
at the same time do this
Hi Sandip,
1.Create Two Variable
2.use two variables for text boxes like vRent and vPark
3.also use two variable for charts too
Regards
Nagarjuna