Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
mellerbeck
Creator II
Creator II

Help with ignoring selections using {1}

I've been having trouble getting a chart to ignore selections.

This is the expression in the chart. Any thoughts on what I should do?

=sum(Aggr(if(PO_HDR.Plant = '03',if(PO_HDR.DueDate = vSelectedDate,PO_HDR.PalletCount)), PO_HDR.in_item_key, Order))

1 Solution

Accepted Solutions
swuehl
MVP
MVP

You could try set expressions to clear the selection in Order field:

=sum({<Order=>} Aggr(if(only({<Order=>}PO_HDR.Plant) = '03',if(only({<Order=>}PO_HDR.DueDate) = vSelectedDate,only({<Order=>}PO_HDR.PalletCount) )), PO_HDR.in_item_key, Order))

Regards,

Stefan

View solution in original post

3 Replies
mellerbeck
Creator II
Creator II
Author

i.e. if you click on an Order row the Pallet graph should not change.

swuehl
MVP
MVP

You could try set expressions to clear the selection in Order field:

=sum({<Order=>} Aggr(if(only({<Order=>}PO_HDR.Plant) = '03',if(only({<Order=>}PO_HDR.DueDate) = vSelectedDate,only({<Order=>}PO_HDR.PalletCount) )), PO_HDR.in_item_key, Order))

Regards,

Stefan

mellerbeck
Creator II
Creator II
Author

Thanks a lot Stefan! Exactly what I needed. I also started messing with alternative states! That is cool stuff!