> So I don't have to re-create, send a workbook along with what you want. Most
> never use command buttons. I usually asign to a shape. Did one for a client
[quoted text clipped - 84 lines]
> >> >> >> >
> >> >> >> > I would greatly appreciate any help with this. Thanks in advance.
Sent him this.
Sub CopyToNextAvailCol()
mr = 5
mc = "d"
lc = Cells(mr, mc).End(xlToRight).Column + 1
Range(Cells(mr, "f"), Cells(93, "f")).Value = _
Range(Cells(mr, lc - 1), Cells(93, lc - 1)).Value
Range(Cells(mr, lc), Cells(93, lc)).Value = _
Range(Cells(mr, mc), Cells(93, mc)).Value
End Sub

Signature
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com
> Hi Don,
>
[quoted text clipped - 101 lines]
>> >> >> >> > I would greatly appreciate any help with this. Thanks in
>> >> >> >> > advance.