Combine/Merge/concatenate - fields in panel

Grafana version 10.4
Data source Prometheus
Hi, I trying
To combine the project name and version in to a single field . I have tried a filed from calculation but doesn’t give me the ability to format the filed.
What i’m after is being able to (“Project Name” V"version")
I

Did you try label_join()?

I’m not that confident with gafana . Where/how would i use that ?

I don’t have control over the Prometheus instance i’m using for the metric

In query tab, something like this

label_join(up{job="api-server",name="cdktf-core",version="99.0.158"}, "ProjectVersion", "V", "name", "version")

Thank you that was the missing bit i needed