Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Requirement:
Create a ListBox Radio button with three sheets(Inline) and Navigation button to move to specific sheet bases on Radio button value.
But, I am unable to provide ListBox Radio button value in Navigation button to navigate to specific sheet. Here, Navigation button options are pointing to particular sheet at a time but
I want it to navigate to specific sheet depends on Radio button value.
Example:
Created List box of Radio Buttons like Customer,product and sales in welcome page dashboard.
If I select radio button of customer & click on submit button,it should navigate to customer related sheet. In the same way,
If I select product radio button & click on submit button it should navigate to Product related sheet only.
But here we are using only one button(submit) and it should navigate to multiple sheets bases on selection.
As we are unable to provide dynamic selection value to Navigation button, this functionality is not working.
Please suggest how can we achieve this through expression or any extension available in Qliksense.
Hi Radha,
You can write below expression in Navigation button sheet id and try:
(Go to Navigation Behaviour -> select Navigation Action as Go to a sheet(defined by Sheet id) -> Sheet ID)
if(FieldName='Customer','SheetID',
if(FieldName='product','SheetID',
if(FieldName='sales','SheetID'
)))
Thanks,
Naresh
Hi Naresh,
Sorry for late response, thanks for your comment. The issue was resolved before your post reply.