Hi,
I created a formula field 'totalQuotes' that counts the number of records linked ('quotes'):
It works OK when I create a new record or save one after a modification. But I need to update the value of the field 'totalQuotes' every time a related record is added in the bottom panel and therefore there is no need to save the target record.
I thought to create an update button and do it manual but... is there a valid method to do this automatically?
Thank you for your time.
I created a formula field 'totalQuotes' that counts the number of records linked ('quotes'):
Code:
totalQuotes = entity\countRelated('quotes'),
I thought to create an update button and do it manual but... is there a valid method to do this automatically?
Thank you for your time.
Comment