Inventory Managent

We have an app that has a table of loads going out of our facility with multiple suppliers and products. On another table we have the same products coming in on rail with the same suppliers. Is there a way to have a table for each product and shipper with sums of each supplier and product. I need a view where I can view this inventory and download a report.  

0 2 95
2 REPLIES 2

I have the following formula on a column for each one. 

SUM(
SELECT(
Load[Tons],
AND(
([Supplier] ="6"),
([Commodity]="Cotton")
)
)
)

 

It works for the filter on each but how to show this information has me stumped 

Top Labels in this Space