If function with calculation

C

Charlie

Hi All,

I need to get a result from the following:

IF B20 = 0,0 IF B20<35, 35 IF B20> 35=B20

Basically in layman terms if B20 has a value above 0 the minimum showing is
35 if it is higher than 35 then it remains the same, 0 must remain 0.

Any help would be great
 
S

Steve Dunn

Hi Charlie,

you're almost there with your description!

=IF(B20=0,0,IF(B20<35,35,B20))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top