I have a SP Inregrated form I have been working on for some time.
The form has many fields but the issue is related to a Project Complete field - Yes No slider and also a Status Drop down field .
I am adding the following formula to the Status field default(field value not card) to automatically change the status to completed when the Project Completed switch is checked. DataCardValue1 is the Project Complete slider. The Project completed switch triggers many other things.
If(Text(DataCardValue1.Value)="false",{Value:"Active"},{Value: "Completed"})
Th vlaues update fine on the form when the switch is flipped, but ...when I click the Save on the form from within the SP list, nothing happens. I also cannot change any of the exisitng forms with this formula in the Status field.
If I delete that formula, everything works fine. It took me 3 hours to figure out why my form stopped saving. I restored back 20 versions to before that formula was added and then started adding each change I made 1 at a time until the form broke.
It doesnt matter if the switch is on true or false it does not save either way.
I think this is a bug!!