Concatenate Property Meta Specifier - Title Property?

If I have an example struct of:

FExampleStruct
{
     FText NiceName;
     int Amount;
};

UPROPERTY(EditAnywhere, BlueprintReadOnly, meta = (TitleProperty = "NiceName"))
TArray<FExampleStruct> ArrayOfMyStruct;

It will show nicely for each member the nice name specified, is it possible to concatenate it somehow that it could show both nice name and the amount in the Title Property with some sort of property concatenation or string concatenation ?

I know its not really a big thing but any chance anyone figured this out yet?