Rapid problem

Copper Contributor

Hi. I am wondering if someone can help me out?

 

My question is this. Let's say I want to make cell A2 display a number (35, for example), and decrement that value if a numeric value is entered in A1. So, for instance, if A1 would contain 1, 34 would be the result. If you entered 10 in A1, A2 would display 25, etc. Now, for additional detail, let's say there's a value the cell is never going to go lower than. For example, if I wanted to make the lowest value for A2 to be 10, then it would display 10, even if you entered 100, or even 1,000,000 in A1. 

 

 

1 Reply

@SonAmyFan362 

Enter the following formula in A2:

 

=MAX(35-A1,10)