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: 
Anonymous
Not applicable

Displaying No Dimensions for No data

Please find the attached application , there is no data for 29th feb , I don't want to see any data , how do I fix the dimensions.

Thanks

Labels (1)
1 Solution

Accepted Solutions
rubenmarin

Hi, the last 2 columns will print something when the result is zero, try to set it to null() when there is no data.

One way to do that is enclosing the expressions between an 'If' to check the dates:

If(ServiceTimeSeries.Date>='$(=Date(vStartDate))' and ServiceTimeSeries.Date<='$(=Date(vEndDate))',

  Your CurrentExpression

)

View solution in original post

2 Replies
sunny_talwar

There are multiple objects in you application, which one are you talking about?

rubenmarin

Hi, the last 2 columns will print something when the result is zero, try to set it to null() when there is no data.

One way to do that is enclosing the expressions between an 'If' to check the dates:

If(ServiceTimeSeries.Date>='$(=Date(vStartDate))' and ServiceTimeSeries.Date<='$(=Date(vEndDate))',

  Your CurrentExpression

)