i was doing very simple plus minus, like this
BUT it was giving error of like this #VALUE, i m unable to understand why it is showing such behavior , any idea ?Code:=D4-D5-D6-D7+C9
IC, if i select the whole range and change the format to number will solve the problem ? i will try it
No it will not...
Formatting a cell only changes how the value in the cell is displayed.
The underlying value in the cell remains unchanged.
You need to find which value is not a number.
Use ISNUMBER to test.
=ISNUMBER(D4)
repeat for each value in your formula
Which one(s) return FALSE?
What answer do you get from this?
=SUMPRODUCT(--ISNUMBER(D4:D7)+1,{1000;100;10;1})+(ISNUMBER(C9)*10000)
sorry sir, as i said above, i can't test this at the moment, i m having this problem at office computer, what should i expect from this formula and then what i need to do to solve my problem after looking at the result of this formula, thanks