SOLVED

If Function (multiple criteria)

Copper Contributor

I need a formula that would give me these results: 

 

If  K6 is more than $1,500, then enter $1,500 into L6

If  K6 is between 0 and $1,500, then enter the value from K6 into L6

If. K6 is below 0, then enter 0 into L6

 

Screen Shot 2021-06-21 at 12.02.39 PM.png

2 Replies
best response confirmed by allyreckerman (Microsoft)
Solution

@farzadtaheri 

In L4:

 

=MAX(MIN(K4,1500),0)

 

Fill down.

Thank you!
1 best response

Accepted Solutions
best response confirmed by allyreckerman (Microsoft)
Solution

@farzadtaheri 

In L4:

 

=MAX(MIN(K4,1500),0)

 

Fill down.

View solution in original post