Hello ,
I would really appreciate some help on this .
What I'm trying to do is Patch multi textInputs into one column but I want them to be the one under the other if that is possible. What I have so far thanks to @RandyHayes help on a previous post is this
DisclosedComment:Concat([TextInput1_7, TextInput1_8, TextInput1_9, TextInput1_10,TextInput1_11,], Value.Text & Char(13)),
It will work if I use it to combine all those textinputs into one but it will not work with the patch so it can show the one under the other on my SharePoint list.
Also one more thing when I have a button that is disabled when some things are not filled. I am having an issue with the checkbox
and the dropdown . What I have is this:
If(
IsBlank(Rquestion1.Selected.Value) || IsBlank(Rquestion2.Selected.Value) || IsBlank(Rquestion3.Selected.Value) || IsBlank(Rquestion4.Selected.Value) || IsBlank(Rquestion5.Selected.Value) || IsBlank(Rquestion6.Selected.Value) || IsBlank(Rquestion7.Selected.Value) || IsBlank(Rquestion8.Selected.Value) || IsBlank(Rquestion9.Selected.Value) || IsBlank(Rquestion10.Selected.Value) || IsBlank(Rquestion11.Selected.Value)|| IsBlank(Rquestion12.Selected.Value) || IsBlank(Rquestion13.Selected.Value) || IsBlank(SSN1.Text) || Checkbox1.Value || Checkbox1_1.Value,
DisplayMode.Edit,
DisplayMode.Disabled
When I do that the last too Check box 1 and check box1_1 if both are not checked it is working fine but when Click one of the do the button gets activated. Is there something I am doing wrong . Also is there a way i can add my combobox1 on there ?
I know it is a lot and I really appreciate any help you can give me.