Hi @anubhav29 ,
Do you want the button enabled when all the radios are selected?
If so, you could use Radio.selected.value in gallery.allitems to jusitify whether all the radios are checked.
I've made a similar test for your reference:
my gallery named Gallery6, my two radios named Radio1 and Radio2
set the button's DisplayMode:
If(!IsEmpty(Filter(Gallery6.AllItems,!IsBlank(Radio1.Selected.Value)))&&
!IsEmpty(Filter(Gallery6.AllItems,!IsBlank(Radio2.Selected.Value))),
DisplayMode.Edit,
Disabled)
On your side, you just need to replace with your gallery name and radios name.
Best regards,