Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey everyone,
I'm a QlikView beginner facing an issue with my current dashboard design. I would greatly appreciate if you could help by pointing me in the right direction or providing a better appproach altogether.
Goal
I am trying to display the account balance of different bank accounts (based on selection) over different ranges (also based on selection) in a Line Chart. All data since the beginning is availabe, thus the account balance at a certain point equals the commulative sum of all previous account movements. I also want to be able to change the date dismension depending range selection (e.g. I might choose the year dimension if I selected 10 years but would want to see daily values when only selected a single month)
Approach
TempTable:
LOAD
*
, week(Effective_D) As Effective_Week
, Year(Effective_D) As Effective_Year
, Date(monthstart(Effective_D), 'MMM-YY') as Effective_Period
, Month(Effective_D) As Effective_Month
, Day(Effective_D) As Effective_Day
FROM
...Journal_Entries.qvd (qvd)
;
Data:
NOCONCATENATE LOAD
*
Resident TempTable
Order by Effective_D;
Question Summary
1) Can I use the above mentioned formula in my line chart or is there a better approach?
2) Any clues why the 'order by' seems to fail?
3) Can I use the vDateDim variable in principle to adjust formula and date dimension through buttons?
Cheers,
Tim