@RezaDorrani wrote:
Hi @Anonymous
I dont believe there is any such limit
But nesting galleries too deep would impact the performance of your app
--------------------------------------------------------------------------------
If this post helps answer your question, please click on “Accept as Solution” to help other members find it more quickly. If you thought this post was helpful, please give it a Thumbs Up.
So i should use check boxes?
How would i go about using three checkboxes for the one column?
i.e Say i have a column called Drillareacheck and i wanted these same three options (OK, N/A & Defect)
Previously i have only done two checkboxes and id have the oncheck as the following (this is just a yes/no)
Reset(CHKDrill_1);Set(SelectedOption, "NO")
and then id patch/collect like this
Drillareacheck: If(CHKDrill.Value=true,"YES","NO"),
So it would really only be checking one checkbox.
However in my current scenario it wouldnt work as it would need to check all three? is this a multiple If statment? what would that look like?