I'm looking to have a form calculate a cost based on a service and the number of hours requested. If the service Sign Language Interpreter for Adults is requested AND the total duration is > 2 hours, the rate per hour should double. I can get the calculation to work based on this formula, but when I add a row, the Service Rate per Hour is not calculating correctly.
Here is my form calculation. I have tried adding an index, but it doesn't seem to work.
=IF(AND(Collection.Service="Sign Language Interpreter for Adults", Collection.Number_of_Hours__Duration_>2), Product(Collection.Service_Rate,2), Collection.Service_Rate)
Without adding a row = Calculation is correct
When Adding a Row