I am trying to use the round function with the isblank function but when I copy the formula down, I get #value! if there is no value; however if I use only the isblank function then there is no error. my code is below thanks!
=ROUND(IF(ISBLANK(D15),"",'Sheet2'!L25+'Sheet2'!P25+'Sheet2'!O25+AK15+AL15),0)
My feeling is that you followed the wrong order of things. Try this:
Also the comment of
L42
might be appropriate if theD15
has a formula;ISBLANC
does not detect blanks that result from formulas. Same if it actualy has spaces only, etc. For this reason consider replacingISBLANK(D15)
withLEN(Trim(D15))=0
.