Hello,
I have a form where I'm needing to pass data from a label back to my data source. Within my data card called "Amount Remaining", I have two labels working jointly to 1. Execute a formula based on other text inputs within the form and 2. Display the results of the first labels formula. On the front end, I have the correct data appearing within my second label as expected while my first label is not visible. I'm having issues with passing that data back to my DataSource. How can I pass this data back to my data source? When submitting the form, the amount Remaining field within my table is blank. On the front end, the Amount remaining label displays correctly.
DataSource (Dataverse) : "Test Claims Table Dataverse"
Form Name: "Form1"
DataCard Name: Amount Remaining
Label1 Items Property: If(IsBlank(DataCardValue6.Text),DataCardValue4.Text - DataCardValue8.Text,DataCardValue6.Text-DataCardValue8.Text)
Label2 Items Property: Text(Value(Label1.Text),"$#,###","en-US")