Hi @JoseC12 ,
Could you please share a bit more about the "CATEGORY" column in your data source? Is it a Text type column or a Choice type column?
I assume that the "CATEGORY" column is a Text type column in your data source, please consider take a try with the following workaround:
Within your Edit form, set the Items property of the Radio control in CATEGORY data card to following:
["KCS", "KLS", "KSS"]
set the Default property of the Radio control to following:
ThisItem.CATEGORY // On your side, you should type ThisItem.CATEGORIA
If the "CATEGORY" column is a Choice type column in your data source (e.g. a SP List), please consider modify the formula in the Default property of Radio control to following:
ThisItem.CATEGORY.Value
Set the Update property of the "CATEGORY" data card in your Edit form to following:
Radio1.Selected.Value
Please consider take a try with above solution, check if the issue is solved.
Best regards,