Is there a way to do something like this:
in Excel? ThanksCode:If B23 = "256MB" Then
F23 = F22 + 150
End If
Printable View
Is there a way to do something like this:
in Excel? ThanksCode:If B23 = "256MB" Then
F23 = F22 + 150
End If
Put this in cell F23
HTHCode:=IF(B23="256MB",SUM( F22+150),"")