Hi @ANB
You must create that set of options within your application, you can do it through a collection based on the way they are in Model Driven Apps.
After doing this, depending on what you need, whether to include it in a form or just to display it, you must call the collection that you have created.
You will also have to do a little logic to be able to save the option set as a numeric field. I show you how to do it


then you must add a DataCArdValue where you will have to do the logic



If( Choice1.Selected.Value = "Option1", 1, If( Choice1.Selected.Value = "Option2", 2, If( Choice1.Selected.Value = "Option3", 3, 0 ) ) )

You can hide the DataCArdValue but it is the field that is being saved in dataverse

If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
You can accept more than one post as a solution