I have a button in a vertical Gallery which acts as a toggle for the user to select either "working" or "not working". The problem I have is when the button is clicked it changes the properties for every button in every cell.
If(
Button1State = "Edit",
UpdateContext({ Button1State: "Disabled", Button3State: "Edit" }),
UpdateContext({ Button1State: "Edit", Button3State: "Disabled" })
)