K
Kevin Sprinkel
I am checking the delta between two columns of numbers in
a third column for the purpose of comparing two rounds of
a construction cost estimate.
Occasionally, what was in the scope the first time around
has been removed (because they can't afford it), in which
case I'd like the text string to have the value of zero.
Two different attempts yield the errors shown below:
Desired Result (Convert any string to zero)
A B C
DD SD Delta
1 2,000 3,000 -1,000
2 3,500 2,500 1,000
3 NIC 2,000 -2,000
Results with C3 = A3 - B3:
A B C
3 NIC 2,000 #VALUE!
Results with C3 = IIF(Type(A3)=1,A3,0):
A B C
3 NIC 2,000 #NAME?
Any suggestions?
Kevin Sprinkel
Becker & Frondorf
a third column for the purpose of comparing two rounds of
a construction cost estimate.
Occasionally, what was in the scope the first time around
has been removed (because they can't afford it), in which
case I'd like the text string to have the value of zero.
Two different attempts yield the errors shown below:
Desired Result (Convert any string to zero)
A B C
DD SD Delta
1 2,000 3,000 -1,000
2 3,500 2,500 1,000
3 NIC 2,000 -2,000
Results with C3 = A3 - B3:
A B C
3 NIC 2,000 #VALUE!
Results with C3 = IIF(Type(A3)=1,A3,0):
A B C
3 NIC 2,000 #NAME?
Any suggestions?
Kevin Sprinkel
Becker & Frondorf