Forum Discussion
MarkD72
Dec 15, 2022Copper Contributor
Conditional Formatting based on a % of a min / max value
Hello I've created a table where I would like to track a monthly actual value against a set min and max tolerance threshold - example below. Key Risk Indicator (over 12 month per...
- Dec 15, 2022
MarkD72 I created 1 Lambda function and 6 conditional formatting rules
the lambda was:
LcolVal = LAMBDA(in, INDEX(in, XMATCH(TRUE, ISNUMBER(in), 0, -1)))the rules are:
HansVogelaar
Dec 15, 2022MVP
On which column(s) should the color of Appetite Status be based?
MarkD72
Dec 15, 2022Copper Contributor
Hi HansVogelaar , thanks for replying. The Appetite status will be based on the last or most recent actual available. I've tried to visualise what I'm aiming for below
Regards
Mark
- mtarlerDec 15, 2022Silver Contributor
MarkD72 I created 1 Lambda function and 6 conditional formatting rules
the lambda was:
LcolVal = LAMBDA(in, INDEX(in, XMATCH(TRUE, ISNUMBER(in), 0, -1)))the rules are:
- MarkD72Dec 15, 2022Copper Contributor
mtarler Brilliant piece of work 🙂
Never heard of LAMDA before so will spend a bit of time understanding the function and formulas you have used.
Thanks for this
Mark
- mtarlerDec 15, 2022Silver ContributorHighly recommend learning Lambda and Let but if needed you could just replace the
LcolVal(xxx) with the INDEX(xxx, XMATCH(TRUE, ISNUMBER(xxx), 0, -1)) from the LAMBDA in each case