ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Cell formatting (https://www.excelbanter.com/excel-programming/379018-cell-formatting.html)

Shashank

Cell formatting
 
Hi !!!!!!!!!!!!!!!!!!!!!!!!!!!

I need to do something like


sub sTest()
dim strTest as string


strTest=".interior.colorindex=10"


with range("A1")
strTest ' basically formatting the range with a variable input
end with


end sub


This is just a dummy code. I need to do this as I have a range which
has different formats for different cells within the range.
I would like to store the formats in an array and apply it to the range
based on the key value or something.


Thanks !




NickHK

Cell formatting
 
You something like this. You can loop through your array instead.

Private Sub CommandButton2_Click()
Dim ColorI As Long

With Range("A1").Interior
For i = 1 To 10
.ColorIndex = i
Next
End With

End Sub

NickHK

"Shashank" wrote in message
...
Hi !!!!!!!!!!!!!!!!!!!!!!!!!!!

I need to do something like


sub sTest()
dim strTest as string


strTest=".interior.colorindex=10"


with range("A1")
strTest ' basically formatting the range with a variable input
end with


end sub


This is just a dummy code. I need to do this as I have a range which
has different formats for different cells within the range.
I would like to store the formats in an array and apply it to the range
based on the key value or something.


Thanks !







All times are GMT +1. The time now is 09:33 AM.

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