Hi,
I think this is a simple one but can't figure it out.
I have a Label in a gallery showing the Weight, using the code ThisItem.'Final Dryer Cleaning Waste'.
Then depending on that number, I am changing the Fill Colour of the label using the code below:
If(
Value(Self.Text) < 300,
Color.LimeGreen,
Value(Self.Text) < 351,
Color.Orange,
Color.Red
)
However, when the Label is blank because no Weight has been submitted, the Label is Lime Green as it is following the code above (less than 300). But I just want the Label to be white if it is blank, or even better if it could say 'No Weight Submitted' when it is blank.
Any help is much appreciated.
Thanks