Home |
Search |
Today's Posts |
#1
![]()
Posted to alt.comp.lang.vba,microsoft.public.excel.programming
|
|||
|
|||
![]()
Dear experts,
Excel cell function (or feature) called "indent" is set with number of indents. When I set it up with 1 indent, I see space (size of 3 spaces) before the text. Can I reset the size of it using VBA? For example, give smaller sized indent (2 space sized indent) before the text for each cell. Is that possible? Please help. Thanks in advance. Joon @ MSRT |
#2
![]()
Posted to alt.comp.lang.vba,microsoft.public.excel.programming
|
|||
|
|||
![]()
For Each cell In Activesheet.UsedRange
cell.IndentLevel = 2 Next cell -- HTH Bob Phillips (remove xxx from email address if mailing direct) "Joon Kim" wrote in message ... Dear experts, Excel cell function (or feature) called "indent" is set with number of indents. When I set it up with 1 indent, I see space (size of 3 spaces) before the text. Can I reset the size of it using VBA? For example, give smaller sized indent (2 space sized indent) before the text for each cell. Is that possible? Please help. Thanks in advance. Joon @ MSRT |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
date flexibility | Excel Worksheet Functions | |||
Can you build a formula in one cell with flexibility | Excel Discussion (Misc queries) | |||
Add flexibility to Criteria of DFunctions | Excel Worksheet Functions | |||
how could I indent numbers in Excel? | Excel Discussion (Misc queries) | |||
Adjusting VBA code for some flexibility | Excel Programming |