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

Limit or Exclude by invoice due date

I am new to Qlikview and have ran into an issue that I am unable to resolve. We have created an AR Aging report which loads all data which includes total balances due by customer. We are attempting to limit the report to show only customers that have invoices that are overdue or due within 7 days from the present date but have been unable to do so. How can we limit what is shown but also load all of the data?

Qlikview AR Aging Report.PNG.png

Labels (1)
1 Solution

Accepted Solutions
bbi_mba_76
Partner - Specialist
Partner - Specialist

Hi,

without the document is not so easy, maybe you could add a calculated dimension with the difference between the two dates: If(today()-DueDate>=7, 1) and use the suppress when value is null

View solution in original post

3 Replies
bbi_mba_76
Partner - Specialist
Partner - Specialist

Hi,

without the document is not so easy, maybe you could add a calculated dimension with the difference between the two dates: If(today()-DueDate>=7, 1) and use the suppress when value is null

Not applicable
Author

That was incredibly fast and helpful AND it worked. Can we exclude the calculated dimension from the pivot table?

bbi_mba_76
Partner - Specialist
Partner - Specialist

there is a macro to set the column width to zero

sub HideFreqPivotColumn

    set obj = ActiveDocument.GetSheetObject("CH137")

    set objProp = obj.GetProperties

    set objDim = objProp.Dimensions

    objDim(1).ColWidth = 0

    obj.SetProperties objProp

end sub