Threshold level changes dynamically

Panel - Stat Panel wanted to show the last value as Low, Normal, High based on Min and Max values
Problem - Data is from a manufacturing belt, which runs 2 types of articles in the line, hence min and max changes accordingly
If i want to use thershold or value mapping how use this min and max from a field to refer

2 Likes

@sowdenraymond Thanks for your reply. Yes this should work. I have worked out using the transformations of applying below logic
Numerator = Value - Minimum(Variable)
Denominator = Maximum - Minimum
X = Numerator / Denominator
If X between 0 and 1 then Green colour, < 0 then Blue(low), >1 then Red(High)

1 Like