Hello,
I have a form with a table like below:
There are fields above this that are used in a stored procedure to return new rows to this table. The Time Decimal column uses the below formula to turn the Total Time column into a decimal that gets used to bill based on hours.
=PRODUCT(TIMEVALUE(INDEX(Fertilizer_Tending_Summary.Total_Time, ROW())), 24)
The stored procedure will populate the Total Time column, but unless I change the value that gets populated, the Time Decimal field calculation does not happen - it remains at 0. Is there anything I can do to get that calculation to fire when the lookup happens?
Thanks!