Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a table fact table that has branch id and sales amount, I want to see the sales value of all branches against the branch I selected.
Fact Table
BR_ID, Sales
Dimension Table
BR_ID, BR_Name
You could use set analysis component e() for the same. If you need more specific help, try to share a sample app explaining the expected output there.
You could use set analysis component e() for the same. If you need more specific help, try to share a sample app explaining the expected output there.
Hi,
You can use set analysis, but also alternate states would be a good option, if you have some experience with Qlik. This way you can have more flexibility in comparing branches.
Jordy
Climber
Thank you very much e() did the job, can we use e() only when dimension is selected otherwise it show all the records
Yes, you can put an if condition like:
If (getselectedcount(dimension), <expression>, <expression2>)
Thank you sir