Hi Community,
I'm building an inspection app and struggling with the "Send Audit" button to be visible only when all answers are provided.
Above the button is a gallery filtered with AuditID.
Empty answer highlighted.
I tried to check the SharePoint list for empty rows as well as the gallery but no luck.
If(IsEmpty(AuditsQuestions.Answer), false, true)
If(IsEmpty(Filter(AuditsQuestions, varRecord.ID = AuditID)), false, true)
I tried using isBlank but as I said, no success.
Any ideas?
Thank you.
Regards
Slawek
Solved! Go to Solution.
I tried If( Blank() in Gallery.Allitems.Answer but that didn't seem to work. CountIf worked:
If(CountIf( Gallery1.AllItems.Answer, IsBlank(Answer) ) > 0, false, true)
You can use is blank because you are using 2 icons...
You can try checking the color of the items... Something like:
Icon1.Color = Green
You need to check all icons.
If you need additional help please tag me in your reply and please like my reply.
If my reply provided you with a solution, pleased mark it as a solution ✔️!
Best regards,
Gonçalo Nogueira
Check my LinkedIn!
My website!
I tried If( Blank() in Gallery.Allitems.Answer but that didn't seem to work. CountIf worked:
If(CountIf( Gallery1.AllItems.Answer, IsBlank(Answer) ) > 0, false, true)
User | Count |
---|---|
249 | |
105 | |
82 | |
51 | |
43 |