Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is it possible to format a cell using VBA code
My code include the following DatabaseWorksheet.Cells(DestinationRow, 1).Value = AssignDat At the time this code is executed the cell is not formatted. How would I modify this code so that, in addition to being populated with AssignDate, borders and a pattern would be added Thanks Kevin |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Here is an example. Just make a manual selection or uncomment the range and
modify to suit. Sub Addborders()'Make selection and execute Dim myBorders Dim i As Integer myBorders = Array(, xlEdgeLeft, xlEdgeRight, xlEdgeTop, xlEdgeBottom, xlInsideVertical, xlInsideHorizontal) For i = 1 To UBound(myBorders) 'Range("h2:J6").Select With Selection.Borders(myBorders(i)) .LineStyle = xlContinuous End With Next End Sub -- Don Guillett SalesAid Software "Kevin" wrote in message ... Is it possible to format a cell using VBA code? My code include the following. DatabaseWorksheet.Cells(DestinationRow, 1).Value = AssignDate At the time this code is executed the cell is not formatted. How would I modify this code so that, in addition to being populated with AssignDate, borders and a pattern would be added? Thanks. Kevin |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The easiest way to see the code (and the possibilities) is to turn on the
macro recorder (tools=Macro=Record a new macro) then perform the actions manually. then turn off the recorder and look at the code. this will give you the properties, methods and constant arguments you need. You can then use them in your code. -- Regards, Tom Ogilvy "Kevin" wrote in message ... Is it possible to format a cell using VBA code? My code include the following. DatabaseWorksheet.Cells(DestinationRow, 1).Value = AssignDate At the time this code is executed the cell is not formatted. How would I modify this code so that, in addition to being populated with AssignDate, borders and a pattern would be added? Thanks. Kevin |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub FormatRange()
With Worksheets("Ark1").Cells(DestinationRow, 1) .Value = AssignDate .Font.Bold = True .Interior.Color = RGB(255, 255, 0) .... .... End With End Sub -----Original Message----- Is it possible to format a cell using VBA code? My code include the following. DatabaseWorksheet.Cells(DestinationRow, 1).Value = AssignDate At the time this code is executed the cell is not formatted. How would I modify this code so that, in addition to being populated with AssignDate, borders and a pattern would be added? Thanks. Kevin . |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Just to mention, the recorder will record settings for all attributes of the
cell. You only need to select those attributes you want to set/change. -- Regards, Tom Ogilvy "Tom Ogilvy" wrote in message ... The easiest way to see the code (and the possibilities) is to turn on the macro recorder (tools=Macro=Record a new macro) then perform the actions manually. then turn off the recorder and look at the code. this will give you the properties, methods and constant arguments you need. You can then use them in your code. -- Regards, Tom Ogilvy "Kevin" wrote in message ... Is it possible to format a cell using VBA code? My code include the following. DatabaseWorksheet.Cells(DestinationRow, 1).Value = AssignDate At the time this code is executed the cell is not formatted. How would I modify this code so that, in addition to being populated with AssignDate, borders and a pattern would be added? Thanks. Kevin |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you all. As always, you have been a great help
Kevin |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Locking only borders and patterns | Excel Discussion (Misc queries) | |||
two flavors of formatting patterns (border/area vs. line/marker) | Excel Discussion (Misc queries) | |||
Conditional Formatting of merged cells, borders don't show correct | Excel Discussion (Misc queries) | |||
How can I lock the formatting (patterns) in Excel? | Excel Discussion (Misc queries) | |||
How do I do conditional formatting on number formats not patterns. | Excel Discussion (Misc queries) |