Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Input Parameter and drill down

Hi,

I need to design Qlikview report same as existing Business object report ,  BO report  has below feature implemented, please suggest how to implement same in Qlikview

1. User input parameter for date- it asks user to select date while running report

2. Drill down from one level to another level

Labels (1)
26 Replies
vishsaggi
Champion III
Champion III

Yes and link that to your fact table.

Not applicable
Author

Can you attach sample app with date range implemented if possible please

vishsaggi
Champion III
Champion III

Yes PFA a sample Calendar i used some time ago.

Let me know if you get struck.

Thanks,
V.

Not applicable
Author

I have implemented Calendar in my script , now I need to know how do I implement Calendar Object with date range in my application

vishsaggi
Champion III
Champion III

Create these below variables inside the script . Then find the attached file to implement calendar object. Use calendar object properties and apply button properties and change where necessary. Let me know if any doubts.

VarDates:

Load

      min([%Key Date]) as minDate,

      max([%Key Date]) as maxDate

FROM <Give your calendar table name here>;

// To update dates into Variables

LET vMinDate = Floor(YearStart(Peek('minDate', 0, 'VarDates')));

LET vMaxDate = Floor(YearEnd(Peek('maxDate', 0, 'VarDates')));

Drop Table VarDates;

Not applicable
Author

[%Key Date] is the fact table date not calendar table date right?


I have created two calendar objects with button and applied properties but when I am selecting from and to date it is selecting all values in listbox

Not applicable
Author

it is selecting end date correctly but from date selecting from 12/31/1899

vishsaggi
Champion III
Champion III

Yes it should be from the Fact table. And can you attach me a sample app where you facing the issue.

Not applicable
Author

sorry I rechecked it is not selecting end date correctly either

vishsaggi
Champion III
Champion III

Can you send me the sample app you trying on please??