ajetrumpet
Banned for being rude
- Joined
- Apr 12, 2008
- Messages
- 569
- Office Version
- 365
- 2016
- 2007
- Platform
- Windows
all,
is there a justification for using MIN/MAX when I have a max ceiling number for a cell? MIN/MAX functions ignore blank cells, via excel help files. so, using them with a blank cell would require:
whereas a simple IF() is only (which yields a 0 for blank cells):
that makes MIN/MAX absolutely useless if blank cells are a risk.
an easier way to get around it? or is this set in stone? (I'm looking for ways to write the shortest possible formulas in cells so I don't get confused in the future when I'm looking at my own stuff.
thanks!
is there a justification for using MIN/MAX when I have a max ceiling number for a cell? MIN/MAX functions ignore blank cells, via excel help files. so, using them with a blank cell would require:
Code:
=min(if(isblank(c4), 0, c4), 4000)
Code:
if(c4>4000,c4,4000)
an easier way to get around it? or is this set in stone? (I'm looking for ways to write the shortest possible formulas in cells so I don't get confused in the future when I'm looking at my own stuff.
thanks!