Skip to main content
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

1 Solution

Accepted Solutions
swuehl
MVP
MVP

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

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).