Hi,
I made a quick mockup of an application to test some functionalities and they were working fine there. Then I wanted to move the functionalities to an actual working application and then it results in an error. I have a few text input controls and an HTML text control which should show a summary of the provided values in the text inputs. The HTML text formula is:
"<b>Max. number of companions: " & varAdditionalAttendeesLimit & "<br>Total number of companions: " & txtAdditionalAttendees1_1.Text+txtAdditionalAttendees2_1.Text+txtAdditionalAttendees3_1.Text+txtAdditionalAttendees4_1.Text & "<br>Total fee for companions: " & (txtAdditionalAttendees1_1.Text * varAdditionalAttendeesFee1) + (txtAdditionalAttendees2_1.Text * varAdditionalAttendeesFee2) + (txtAdditionalAttendees3_1.Text * varAdditionalAttendeesFee3) + (txtAdditionalAttendees4_1.Text * varAdditionalAttendeesFee4)
When all of the text inputs are filled, everything is ok. But when at least one of them is blank, the HTML text disappears and when I hover over the text input name in the formula, it says e.g.:
txtAdditionalAttendees1_1.Text = PowerApps encountered an internal error trying to evaluate this expression | Data Type: Error
Everything's working fine in the other application (mockup one), I tried replacing the HTML text with labels and the same error occurs. Creating a different screen also did not help. Is that some temporary Power Apps bug?