I have 2 modules: Data Module and Dashboard module.
1. Data Module has:
Region (List Item) Product (Line Item with List Items called PRODS) Value (Line Item) Export? (Line Item - Boolean)
e.g North America PRODS=Mountain Bike 100 True
Europe PRODS=Mountain Bike 50 False
I would like the Dashboard module to have:-
Region (List Item) PRODS (List Item) Export Value(Line Item) Local Value(Line Item)
North America Mountain Bike 100 0
Europe Mountain Bike 0 50
So I need in the Dashboard module something like these:-
Export Value = 'Data Module'.Value [SUM: 'Data Module'.Product where 'Data Module'.Export?=True]
Local Value = 'Data Module'.Value [SUM: 'Data Module'.Product where 'Data Module'.Export?=False]
How do I use that Boolean as a with SUM?
Many thanks