SelectedTag value to Text Field

Relatively new to ignition (7.9.9) and I am struggling with what, I’m sure, is a simple enough issue.
I need to present a Tag Browse Tree to the user (filtered to the specific root tree node). When the user selects a tag, I need the value of that tag to populate a text field. It seems like it would be a very simple thing to do, but I’m spinning my wheels. I would appreciate any insight, guidance, or help.

tag_value_to_text_field

Use an expression binding to pull the first value out of the Selected Paths dataset property:
{Root Container.Tag Browse Tree.selectedPaths}[0, "selectedPath"]

image