Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
create your own Button on each sheet:
Software Dashboard
Clear FYSelect
Select SoftwareFYSelect = Max(SoftwareFYSelect)
Navigate to Cloud/Software as required
Cloud Dashboard
Clear SoftwareFYSelect
Select FYSelect = Max(FYSelect)
Navigate to the other sheet
Qlik specifically supports buttons that combine actions + navigation, and actions are executed in the order configured.
Just got thru below documents
Sheet Actions are executed when using the builtin arrows. I think what you are seeing is a bit of a non-intuitive sequence issue. "Max(SoftwareFYSelect)" is computed before the Clear state is actually applied to the data. You can see this by manually clearing FYSelect before changing sheets.
You can fix this by adding a {1} to your selection calculation.
Max({1}SoftwareFYSelect)
If that is too broad for your use case you can try:
Max({<FYSelect=>}SoftwareFYSelect)
-Rob
In Sense, the actions working with selections can be a bit tricky, as the previous step may not take effect when the next one is executed. I'd go with the approach suggested by Rob.
Another option is to avoid sheet actions entirely and use one calendar for both. This will require a bit of data remodelling, though. As an option, you can have a calendar with a year field connected to both Fields.
The other option is to have the year selection field completely disconnected from the data model. Howerver, in your objects you would have to add set analysis like {<SoftwareFYSelect={$(=Max(YearSelectorNewField))}>} or {<FYSelect={$(=Max(YearSelectorNewField))}>}