Hello,
I am trying to create a table column for Work Orders that sums a field called "install times" found in dynamics CRM:

Each item in the CRM has an install time, and each work order has a list of all items used for it. I simply wish to have a few field that sums the *total* value of all the "install time" in the work order.
So I have gone to dataverse>Work Order>Form>New table column>Data Type>Formula. But no matter what I do, I cannot click the "save" button because when I mouse over the many formula(s) I've tried, they all give errors.
1.
SUM(
FILTER(
[WO Product],
_workorderproductid_value = [_workorderid]
),
installtimetobase
)
2.
Sum(relatedentities('msdyn_workorderproduct', 'msdyn_installationtime'), msdyn_workorderid = ThisItem.msdyn_workorderid)
3.
aggregate(
lookup(
"workorderproduct",
"workorder",
"_workorderid_value",
[_workorderid],
"installtimetobase"
),
sum
)
4.
_suminstalltimes_value@OData.Community.Display.V1.FormattedValue: (
select sum(installtimetobase/60)
from workorderproduct
where _workorderid_value eq [_workorderid]
)
----------------------------------------------------------
So I have abandoned that and am now trying to just create a business rule to do it, but I'm a bit confused as to how to accomplish that?
