What does float mean now?
Does this mean move right or left (since you have that button on a frozen row
that won't move)?
If yes, you could use some code each time you change the selection:
rightclick on the worksheet tab and select view code. Paste this in:
Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim myShape As Shape
Set myShape = Me.Shapes("Button 1")
myShape.Left = ActiveSheet.Cells(1, ActiveWindow.ScrollColumn).Left
End Sub
Change "Button 1" to whatever name your button has.
You may want to look at creating a toolbar. You could position that where ever
you liked.
You could attach that toolbar to your workbook. If you want to look into this,
read these notes by
Jan Karel Pieterse:
http://google.com/[email protected]