How to access all properties/columns of Global List downstream?

I use a global list to fill a drop down list in the form. I need to access all property/column values of the selected item in a condition. I intend to ‘route’ to the next action in my workflow based on those column values.

Edit: My Global List looks like this:
Value,Text,isMonterey,isSumpter,isRichmond
DesertHog,DesertHog,1,0,1

I need to know the value of isRichmond when DesertHog is selected.
Any help is appreciated.

in Form designer form code behind you can reference Workflowgen.my class to use GlobalLists.fetchList class method
https://docs.workflowgen.com/wfgmy/v420/html/46f608f3-4246-05e3-b48a-7b42cbade592.htm
to get access to all columns.
Since the dropdown binding expects 2 columns only you may need to have another query using the class method to get the value of isRichmond at onselected event of the dropdown.