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

Information do not Load

I don't know Why I have not information appears in box 'Respect du Delai de Fabrication'. Help me

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

Your issue is that you use chart expressions without aggregations, which will not work in most cases:

Use Aggregation Functions!

If you want to group by NameProduct, you will need to decide how you want to aggregate the dates, e.g.

=min(StartDateWO) instead of =StartDateWO (or max(), or avg() etc. can't tell without knowing your full requirements).

View solution in original post

1 Reply
swuehl
Champion III
Champion III

Your issue is that you use chart expressions without aggregations, which will not work in most cases:

Use Aggregation Functions!

If you want to group by NameProduct, you will need to decide how you want to aggregate the dates, e.g.

=min(StartDateWO) instead of =StartDateWO (or max(), or avg() etc. can't tell without knowing your full requirements).