Forum Discussion
Nikola_Tokosova
May 15, 2024Copper Contributor
Conditional filling of a cell
This is not conditional formatting. I would like to ask for advice: I have two cells and I need to insert a function into another cell that automatically fills in predefined text depending on whet...
PeterBartholomew1
May 15, 2024Silver Contributor
Another option is simply to count the "yes"s
= LET(
yesCount, COUNTIFS(conditions, "yes"),
CHOOSE(1 + yesCount, "", 3000, 5000)
)The formula is expressed using Excel 365 syntax.