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

Announcements
Now accepting applications for the Qlik Luminary and Partner Ambassador Programs: Apply by July 6!
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
MVP
MVP

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
MVP
MVP

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

rubenmarin
MVP
MVP

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

)