I have a spreadsheet that will use three cells to calculate what i need.
It will basically be IF A1="value" and B1="value" and c1="value" then show price in D1.
I know how to use IF when only using one cell to answer yes or no.
I was thinking something like
But that doesn't work.
Any suggestions?
It will basically be IF A1="value" and B1="value" and c1="value" then show price in D1.
I know how to use IF when only using one cell to answer yes or no.
I was thinking something like
Code:
=IF (a1="value" & b1="value" & c1="value", 15)
But that doesn't work.
Any suggestions?