SOLVED

Help with and Excel If Then Formula

Copper Contributor

I need to create a Formula with multiple calculations. I need to look at one cell and if there is a value in it (not blank) then use that value. If there is no value there (blank) then get the MIN value from a range of cells).

 

The formula and results will go into cell C3

The IF is when D3 is not blank, use that value

If it is blank, then use the value from a MIN formula of =MIN(D3:R3)

 

Your help is greatly appreciated.

3 Replies
best response confirmed by David_McDaniel (Copper Contributor)
Solution

@David_McDaniel 

Try this one:

=IF(ISBLANK(D3),MIN(D3:R3),D3)
That worked perfectly. Thank you!
You're welcome!
1 best response

Accepted Solutions
best response confirmed by David_McDaniel (Copper Contributor)
Solution

@David_McDaniel 

Try this one:

=IF(ISBLANK(D3),MIN(D3:R3),D3)

View solution in original post