I am creating a conditional formatting for each new month (numeric column) using the Dynamic or Unknown Fields in the Table tool.
([Limit_Min_Max]='max' &&
[_CurrentField_]>=[Limit_Number]*0.9 &&
[_CurrentField_]<=[Limit_Number])
OR
([Limit_Min_Max]='min' and
[_CurrentField_]<=[Limit_Number]*0.9 &&
[_CurrentField_]>=[Limit_Number])
I'm getting the following error:
Invalid type in operator >.
When I added the function ToNumber([_CurrentField_]), I found out that it is pointing to a different column that is a string datatype ([Warehouse]).
How can I make sure that the [_CurrentField_] is actually pointing to the actual current field?