Forum Discussion
Josh_Rabener
Mar 25, 2019Copper Contributor
If Cell A contains this, then Cell B will display this
Good Evening,
I am trying to input a formula that if a value states this much in Cell "A", then Cell "B" displays this value.
For example, in the below screen shot, if the value in Column A is 8.06 or higher/larger, Column B displays 0.5.
If Column A displays 8.05 or lower, then Column B displays 0.
3 Replies
Sort By
- EGS_45Copper Contributor
If collect functions that could be
=LOOKUP(A1,{0,8.05})
Perhaps something else