Alarm Status Table - Formatting Columns to extract certain data (from a UDT)

Using Perspective:

I want the Display Path from the out of box alarm status table to only show a specific value from the Tag it uses.

My UDT's are all defined and set up so the tags pull in the correct data, my issue is the display path is messy and I only want a certain part - surely there is a concatenate feature?

I have tried all the built in {} UDT Parameters but none of them give me exactly what I want..

Full Path: CLR105/CV/Fault/EncoderFault/EncoderFault
Desired Outcome: CLR105_CV

Using the UDT Parameters:
{InstanceName} = Fault
{ParentInstanceName} = Fault
{PathtoParentFolder} = CLR105/CV/Fault
{PathToTag} = CLR105/CV/Fault/EncoderFault
{RootInstanceName} = CV
{TagName} = Encoder Fault

Is there any expression scripting I can use that will return a concatenated version so I can get my desired outcome?

I tried adding a new custom column called AssetName which added fine but the expression binding to retrieve the data from the DisplayPath didn't work.

Many thanks in advance.

Can you show the expression binding you tried?

I finally got it working but it took way longer than I'd care to share.. thank you for your interest I appreciate it - leave the screens for a few hours and come back to it fresh most of the time works for me..

split({PathToParentFolder}, "/")[0] + "_" + {RootInstanceName}

Is how I've managed it.