I'm looking to create a python label expression that sets the labels minimum threshold (out beyond) value according to the [Shape__Area] field value.
So far I have this (which works):
def FindLabel ( [UNIT_NAME], [Shape__Area] ):
if float([Shape__Area]) >= 228202:
return [UNIT_NAME]
This currently leaves out all labels for features that don't meet the condition. I'd like to still include those features but just have their labels appear at a different out beyond value...
So, something along the lines of:
def FindLabel ( [UNIT_NAME], [Shape__Area] ):
if float([Shape__Area]) >= 228202:
set.minThreshold()
return [UNIT_NAME]
Is this possible?