Hello,
What I'm looking to do is compare 4 cells containing dollar values to determine the minimum value. The cell to the right of each should then either display the value of the original cell (immediately to its left) if it is the minimum of the 4 cells being compared or the difference between the cells. This is fairly straight forward. I have accomplished this as follows (this is a formula in cell W14, comparing four values in cells R14, V14, Z14, and AC14):
=IF(V14=MIN($R14,$V14,$Z14,$AC14),V14,V14-MIN($R14,$V14,$Z14,$AC14))
I'd like to display a plus symbol when the value is greater than the minimum cell. For example:
[TABLE="width: 600"]
<tbody>[TR]
[TD][/TD]
[TD][/TD]
[TD]R[/TD]
[TD]S[/TD]
[TD]V[/TD]
[TD]W[/TD]
[TD]Z[/TD]
[TD]AA[/TD]
[TD]AC[/TD]
[TD]AD[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD]Bid 1[/TD]
[TD]Bid 1*[/TD]
[TD]Bid 2[/TD]
[TD]Bid 2*[/TD]
[TD]Bid 3[/TD]
[TD]Bid 3*[/TD]
[TD]Bid 4[/TD]
[TD]Bid 4*[/TD]
[/TR]
[TR]
[TD]14[/TD]
[TD]Price[/TD]
[TD]$5.00[/TD]
[TD]$5.00[/TD]
[TD]$7.00[/TD]
[TD]+$2.00[/TD]
[TD]$7.50[/TD]
[TD]+$2.50[/TD]
[TD]$6.50[/TD]
[TD]+$1.50[/TD]
[/TR]
</tbody>[/TABLE]
I tried to concatenate text in the IF statement for the [value_if_false] parameter, but only get an error.
I'd like to avoid using VBA, as this is for use by a client that is not familiar with VBA.
Thanks!
What I'm looking to do is compare 4 cells containing dollar values to determine the minimum value. The cell to the right of each should then either display the value of the original cell (immediately to its left) if it is the minimum of the 4 cells being compared or the difference between the cells. This is fairly straight forward. I have accomplished this as follows (this is a formula in cell W14, comparing four values in cells R14, V14, Z14, and AC14):
=IF(V14=MIN($R14,$V14,$Z14,$AC14),V14,V14-MIN($R14,$V14,$Z14,$AC14))
I'd like to display a plus symbol when the value is greater than the minimum cell. For example:
[TABLE="width: 600"]
<tbody>[TR]
[TD][/TD]
[TD][/TD]
[TD]R[/TD]
[TD]S[/TD]
[TD]V[/TD]
[TD]W[/TD]
[TD]Z[/TD]
[TD]AA[/TD]
[TD]AC[/TD]
[TD]AD[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD]Bid 1[/TD]
[TD]Bid 1*[/TD]
[TD]Bid 2[/TD]
[TD]Bid 2*[/TD]
[TD]Bid 3[/TD]
[TD]Bid 3*[/TD]
[TD]Bid 4[/TD]
[TD]Bid 4*[/TD]
[/TR]
[TR]
[TD]14[/TD]
[TD]Price[/TD]
[TD]$5.00[/TD]
[TD]$5.00[/TD]
[TD]$7.00[/TD]
[TD]+$2.00[/TD]
[TD]$7.50[/TD]
[TD]+$2.50[/TD]
[TD]$6.50[/TD]
[TD]+$1.50[/TD]
[/TR]
</tbody>[/TABLE]
I tried to concatenate text in the IF statement for the [value_if_false] parameter, but only get an error.
I'd like to avoid using VBA, as this is for use by a client that is not familiar with VBA.
Thanks!