Hi there the current user is User(), you can get User().DisplayName or User().Email
you can update a variable on the OnCheck like UpdateContext({_SelectCheckBox:1}) etc and set the Default of the checkboxes to If(_SelectCheckBox=1,true,false) based on the checkbox you are on.
so
checkbox1 = UpdateContext({_SelectCheckBox:1})
checkbox2 = UpdateContext({_SelectCheckBox:2})
checkbox3 = UpdateContext({_SelectCheckBox:3})
checkbox1 deafualt =If(_SelectCheckBox=1,true,false)
checkbox2 deafualt =If(_SelectCheckBox=2,true,false)
checkbox3 deafualt =If(_SelectCheckBox=3,true,false)