Hi @Guru6 ,
Could you please tell me what type of column you are using in the drop down box?
I have a test that I hope can help you.
In my scenario, my data source is SharePoint, and my grade column is a choices column that only supports single selection.


LastN(
Choices(List4.grade),
LookUp(
AddColumns(
Choices(List4.grade),
"lvl",
Switch(
Value,
"level1",
5,
"level2",
4,
"level3",
3,
"level4",
2,
"level5",
1
)
),
Value = Dropdown3.SelectedText.Value
).lvl
)

Best Regards,
Dezhi