Hi there,
i have a 'select all' checkbox that sets a variable if it is true or false.
So - on check will be : Set(checkallVar,true)
and OnUnCheck will be : Set(checkallVar,false)
Within each chx box the default is :
If(checkallVar=true,true,false)
My screen also saves to a collection when it is saved, and also on the hidden it resets all checkboxes.
So I want the checkboxes to check the value of the collection and / or highlight from the selectall box.
Anyone with anyideas ? I have put an if statement in the default like this , but i dont have it correct :
If(
checkallVar = true,
true,
If(
First(Collection).'Column one' = 'Yes or No'.Yes,
true,
If(checkallVar = false,false)
)
)