PDA

Click to See Complete Forum and Search --> : If/Then Comparison in Excel


run_GMoney
Oct 3rd, 2002, 01:39 PM
Is there a way to do something like this:

If B23 = "256MB" Then
F23 = F22 + 150
End If

in Excel? Thanks

MagellanTX
Oct 4th, 2002, 09:36 AM
Put this in cell F23
=IF(B23="256MB",SUM( F22+150),"")

HTH