I am using LF Forms Professional Version 10.4.1. There is a table I am using that I want the user to fill out columns depth, width and length. There is another column for square feet that I want to fill by multiplying length and width.
I used the following question as a model https://answers.laserfiche.com/questions/110762/Error-in-table-when-calculating-Line-Total#110858.
I have tried the following with both MULT and PRODUCT in the Sq Feet formula field.
=MULT
(
INDEX(Cuts_and_Trenches.Length,ROW()),
INDEX(Cuts_and_Trenches.Width,ROW())
)
=MULT
(
IF(INDEX(Cuts_and_Trenches.Length,ROW())="",0,INDEX(Cuts_and_Trenches.Length,ROW())),
IF(INDEX(Cuts_and_Trenches.Width,ROW())="",0,INDEX(Cuts_and_Trenches.Width,ROW()))
)
=IF(INDEX(Cuts_and_Trenches.Length,ROW())="",0,INDEX(Cuts_and_Trenches.Length,ROW())) *IF(INDEX(Cuts_and_Trenches.Width,ROW())="",0,INDEX(Cuts_and_Trenches.Width,ROW()))