ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   adjustine the range of a selected cell (https://www.excelbanter.com/excel-programming/411184-adjustine-range-selected-cell.html)

abumustapha

adjustine the range of a selected cell
 
Hi there,
I have written the following macro to change the color of a cell as
selected. I am trying to adjust the macro where it will automatically add
(6)cells to the right of the selected cell and apply the same format.

the Macro is:

Sub Macro2()
ActiveSheet.Select
With Selection.Interior
.ColorIndex = 40
.Pattern = xlSolid
End With
Range("A1").Select
End Sub

Your help is greatly appriciated

Ron Coderre

adjustine the range of a selected cell
 
Try something like this:

Sub PaintMeAndSixCellsRight()
With ActiveCell.Resize(Columnsize:=7).Interior
.ColorIndex = 40
.Pattern = xlSolid
End With
Range("A1").Select
End Sub


Is that something you can work with?
Post back if you have more questions.

Regards,

Ron
Microsoft MVP - Excel


"abumustapha" wrote in message
...
Hi there,
I have written the following macro to change the color of a cell as
selected. I am trying to adjust the macro where it will automatically add
(6)cells to the right of the selected cell and apply the same format.

the Macro is:

Sub Macro2()
ActiveSheet.Select
With Selection.Interior
.ColorIndex = 40
.Pattern = xlSolid
End With
Range("A1").Select
End Sub

Your help is greatly appriciated



Per Jessen

adjustine the range of a selected cell
 
Hi

Look at this

Sub Macro2()
ActiveSheet.Select
aCell = Selection.Address
Range(aCell, Range(aCell).Offset(0, 6)).Select
With Selection.Interior
.ColorIndex = 40
.Pattern = xlSolid
End With
Range("A1").Select
End Sub

Regards,
Per

"abumustapha" skrev i meddelelsen
...
Hi there,
I have written the following macro to change the color of a cell as
selected. I am trying to adjust the macro where it will automatically add
(6)cells to the right of the selected cell and apply the same format.

the Macro is:

Sub Macro2()
ActiveSheet.Select
With Selection.Interior
.ColorIndex = 40
.Pattern = xlSolid
End With
Range("A1").Select
End Sub

Your help is greatly appriciated



Ken

adjustine the range of a selected cell
 
Try:

Sub Macro2()

With Selection.Resize(1, 6).Interior
.ColorIndex = 40
.Pattern = xlSolid
End With

End Sub

Good luck.

Ken
Norfolk, Va


On May 19, 2:41*pm, abumustapha
wrote:
Hi there,
I have written the following macro to change the color of a cell as
selected. I am trying to adjust the macro where it will automatically add
(6)cells to the right of the selected cell and apply the same format.

the Macro is:

Sub Macro2()
* * ActiveSheet.Select
* * With Selection.Interior
* * * * .ColorIndex = 40
* * * * .Pattern = xlSolid
* * End With
* * Range("A1").Select
End Sub

Your help is greatly appriciated




All times are GMT +1. The time now is 05:25 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com