Post Made Community Wiki by Community
show/hide this revision's text 3

Excel version

Place this in column B and numbers from 1 to 100 in column A

'

=IF(MOD(A1,15),IF(MOD(A1,5),IF(MOD(A1,3),A1,"Fizz"),"Buzz"),"FizzBuzz")
'
show/hide this revision's text 2

Excel version

Place this in column B and numbers from 1 to 100 in column A

'
=IF(MOD(A1,15),IF(MOD(A1,5),IF(MOD(A1,3),A1,"FIZZ"),"BUZZ"),"FIZZBUZZ")
IF(MOD(A1,15),IF(MOD(A1,5),IF(MOD(A1,3),A1,"Fizz"),"Buzz"),"FizzBuzz")
'
show/hide this revision's text 1