Thread: IF Formula
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Per Erik Midtrød[_2_] Per Erik Midtrød[_2_] is offline
external usenet poster
 
Posts: 25
Default IF Formula

On Oct 10, 6:34 pm, bmo wrote:
I have an if formula "=IF(B2=2006,15)" which works fine, but I would like to
expand it to also include "=IF(B2=2007,30)", but I can't figure out how to
write it. I would even like "=IF(B2=2008,45)" if its possible.

Thanks,


If you only have a few years to check you could indeed use the if-
function, like this:
=IF(B2=2006;15;IF(B2=2007;30;IF(B2=2008;45;"")))

If you have many years, or as time goes by, I would consider a table
and the vlookup-function.

Per Erik