can I use the IF function in the problem below? - excel

How do I use the IF function (or another function) in ce;;s C2-C11 with the condition that if in Cell B5 I have "*" the rezult should be "0" in cell C5 and if in cell B2 I have a number the result in Cell C2 should be equal to the value in Cell C1
How do I use the IF function (or another function) in ce;;s C2-C11 with the condition that if in Cell B5 I have "*" the rezult should be "0" in cell C5 and if in cell B2 I have a number the result in Cell C2 should be equal to the value in Cell C1

Solved: =IF(NOT(B2="*"),C1,0)

Related

Modified number formula

any body know how to modified number the formula
=A1
=A Number based cell value
example if I put cell B2 =2
Cell A2 = A(value B2)
or formula cell A2 is =A2

Excel write another cell with =IF

I'm trying to use the function IF to write in another cell.
I have cell A2, if cell have text "test". I want the cell B2 have text "good" else "bad" BUT the IF function MUST be in the cell B3.
So I tried in cell B3:
=IF(A2 = "test"; B2 = "good"; B2 = "bad")
But nothing happens, cell B2 is normal.
Can somebody help me?

Excel : If cell has a value write value into next cell in column

I am looking for a formula or connection in excel where if cell A2 has value entered should copy the same value into cell D2 , now enter new value into cell A2 , should add this new value in cell D3 or else D2 but still retaining the earlier value to D3 .Overall all the values entered in the cell A2 should keep storing in Column D .

Creating column index in VBA based in multiple conditions

I am trying to create a column index in excel with this idea:
If A3 cell is between -$A$1 and $A$1 the D3 cell receives the 0 value
If A3 cell is between $A$1 and 2*$A$1 the D3 cell receives the 1 value
If A3 cell is between -2*$A$1 and -$A$1 the D3 cell receives the -1 value
If A3 cell is below -2*$A$1 the D3 cell receives the -2 value
If A3 cell is above 2*$A$1 the D3 cell receives the 2 value
Any help?

Excel if A1 cell value is equal to A2 cell value select M3 cell

I want a simple thing. if A1 cell value is equal to A2 cell value then select M3 cell (set active cell M3)
How can I do this?
if range("A1").value = range("A2").value then
range("M3").select
end if

Resources