What I want to calculate is the total cost of all items.
I want to sum the Cost Column in the Costs table.
In Excel this would be =SUM(Tbl_Costs[Cost])
I have added a VC in the Equipment List Table
Sum([Costs][Cost]).
I want to show a list of
Item Id
Cost
and show the total costs for all these items
It seems very simple, just get the sum of a column but I can’t figure it out.
Any help much appreciated
This expression sums the related costs but there will always just be one cost per item.
I want to sum all item costs.
Cost could go in the Equipment List table but I want to show it as an inline view so thats why I created a costs table.
I have added a table to my Excel spreadsheet [Date] =today() and [Total Cost] : Sum(cost Column in Costs table) and added this table in with a view so I can now see total cost in App but would like to see this on same view with a list of all the item Id’s that make up this total cost.
I want to show this as a view in the App. It is a simple formula in Excel but cannot figure out how to do this in App. Just this one table with a Sum of the Costs column.
After much searching, there doesn’t seem to be an easy solution to this. I found a sample App - VirtualCounter from @Aleksi (Thanks @Aleksi ) which I am going to try.
My next task is to create an action and workflow to PDF and email this view but I’m not sure this is possible. Director would like a monthly report to show this view to compare monthly costs.
I have brought this column into the costs table similar to the Description and Category above as a VC.
SELECT(Equipment List[High Value],[Item Id] = [_THISROW].[Item Id])
I want to create a slice of the Costs table for all high Value items but I get the error:
I have also tried bringing the Item Cost into the Equipment List table as a VC but it is then a list type and not a Price type thinking I could do the slice on the Equipment List instead