I'm trying to link a Field (that I created within a Layer) where it will change the size of the text just by changing it in the Attributes.
To "link" the Angle, I went to Layer Properties>Labels>Other Options > Placement Properties...>"Place label at an angle specified by a field"
And set it to my "TEXT_ANGLE" field.
How can I do the same for the size?
Any inputs are welcomed. Thank you.
I believe the only way to do this is to use label classes, and have a different text size for each group. You can use a SQL expression for each label class.
Using label classes to label features from the same layer differently
You can use text formatting tags to achieve this.
In your case, use the FNT formatting tag with size attribute to define the font size from the feature's attributes.
Here's an example Arcade label expression that uses this method:
"<FNT size= '" + $feature.TEXT_SIZE + "'>" + $feature.Name + "</FNT>"