Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I could could do with some help with the following problem:
A QVD is created every week that contains the data from the previous week, and this weeks data.
The QVD contains a keydate column that is the daystart(date) that the data is captured on.
In my App - if i select a user in one chart box, then all the correct calulations are made, an example is below:
If(date = GetFieldSelections(date), Count({$<date={"=$(=only(date))"}, status={"-1"}>}dispute_id), Count({$<WeekYearNum={$(vSelectedDate)}, status={"-1"}>}dispute_id))
So for example, the above calculation would state that user Joe Bloggs has 100 dispute_id's to resolve.
However, in another Chart box, Joe Bloggs has 110 dispute_id's to resolve.
I think this second chart is displaying all the dispute_id's for all the weeks in the QVD, not the week selected.
Can someone please help me work out what the expression (?) needs to be for this second chart box?
Many Thanks,
Shane
Please post a small qlikview document that demonstrates the problem.
Hi,
Thank you for responding.
I have however found a solution by adding the following as an expression to the second chart.
If(date = GetFieldSelections(date), Count({$<date={"=$(=only(date))"}, status={"-1"}>}dispute_id), Count({$<WeekYearNum={$(vSelectedDate)}, status={"-1"}>}dispute_id))
Thanks,
Shane