Can someone help me with the If statement for a Visible part of an Icon?
Below is what I had, but then realize it wasn't completely correct.
Basically it's was a form with Officer (combobox), Service (combobox), Amount (text input) and Attachments as required fields and the visible portion was if the form was valid.
Now I need to add a checkbox for missing receipt so the form should require the Officer, Service, Amount, and Attachment OR Missing Receipt checked off before the submit button is Visible.
The below code is what I had, but I didn't realize you could just check off the Missing Receipt and the submit button would appear, so I have faulty code.
Which part do I need to fix?
If(!IsBlank(DataCardValue1)&&!IsBlank(DataCardValue4)&&!IsBlank(DataCardValue3)&&(!IsEmpty(DataCardValue7.Attachments)||DataCardValue5.Value),true,false)
