I am setting 6 variables for 6 checkboxes:
Set(resultvariable1, If(One.Value=true,"1",""));
Set(resultvariable2, If(Two.Value=true,"2",""));
Set(resultvariable3, If(Three.Value=true,"3",""));
Set(resultvariable4, If(Four.Value=true,"4",""));
Set(resultvariable5, If(Five.Value=true,"5",""));
Set(resultvariable6, If(Six.Value=true,"6",""))
I then have these going to a text field that will be sent out in an email. The issue is the text field takes a long time to update, so when the email is sent the body of the email remains blank as if the value was false. Any way to speed this up so if a user hits submit the values won't remain blank? I also have a dropdown and text input but those update instantly.
I am new to Power apps, so if there is a better way to do this I am all ears!
Body of email:
Text(Dropdown_Room.Selected.Name) &Char(13)&Char(13)&
Text(resultvariable1) & Char(13)&Char(13)&
Text(resultvariable2) & Char(13)&Char(13)&
Text(resultvariable3) & Char(13)&Char(13)&
Text(resultvariable4) & Char(13)&Char(13)&
Text(resultvariable5) & Char(13)&Char(13)&
Text(resultvariable6) & Char(13)&Char(13)&
Text(TextInput2)
Thanks in advance!!!!