Modify Order UPROPERTYs appear

Hi Guys,
I wanted to ask if there’s an easy way of modifying just the order some UPROPERTY appear in the details panel, particularly the properties and their categories I’ve defined are not one after the other in the order I’ve coded them.
As an example between the category “Property One” and “Property Two” there’s “Replication” that is a default one.

You need to use the metadata DisplayAfter and/or DisplayPriority.

Check documentation here: Metadata Specifiers | Unreal Engine Documentation

This property will show up in the Blueprint Editor immediately after the property named PropertyName, regardless of its order in source code, as long as both properties are in the same category

I don’t wanna change the order of properties in the same category, but the order between categories:
from → Cat1, Cat2, Cat3
to → Cat3, Cat1, Cat2

or maybe is possible and I’ve used the modifiers wrong.