I need to see if I can get a product total field and a maintenance total field to add together and put the total into a total field. Has anyone done this before?
There is the onChange Event for each field in the CRM Form fields using this you can use javascript code to calculate and put the total in the third field
and you can access the fileds by crmForm.all.<FieldName>
i.e. crmForm.all.<Field3>.value = crmForm.all.<Field1>.value + crmForm.all.<Field2>.value;