This is a bug
You can use this in 2007 as a workaround
Sub Test()
Dim myPict As Picture
With Range("F32")
Set myPict = .Parent.Pictures.Insert("T:\Sym-enh\CO\logo.bmp")
myPict.Top = .Top
myPict.Left = .Left
End With
End Sub
--
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
"Shashi" wrote in message ...
This code doesnt work correctly in Excel 2008 but works in Excel 2003.
Range("F32").Select
ActiveSheet.Pictures.Insert("T:\Sym-enh\CO\logo.bmp").Select
Picture gets on top of the sheet instead of cell F32.