I need to add a calculated column to my 'Quote' table, that will use columns from the Customer table. However, the column that links to the parent customer is set as 'Customer' data type, and the system won't let me reference it in the calculation.
A basic overview:
A Quote has the fields Customer (customer data type, references the Customer table) and Amount (currency).
A Customer has the field CustAmount (Currency).
I want to add a calculated column CustTotal to Quote, that will be calculated as: Amount + Customer.CustAmount.