Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() "grahammal" wrote in message ... How can I set the column width to 0.75 from within the macro? The macro recorder is your friend. You can easily find the answer to above and similar questions yourself when you analyze the code produced by the macro recorder 2) How do you set a variable that will be global, I need it to be recognised in all macros within the same workbook? If all your macros are in one module: DIM MyVariable at the beginning of the module (in the 'General' section, i.e. outside of any SUB procedure) If your macros are spread among different modules: PUBLIC MyVariable at the beginning of any module. Cheers, Joerg |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change Cell Width WITHOUT changing Column width | Excel Discussion (Misc queries) | |||
How to make cell width different than the column width it lies in | Excel Discussion (Misc queries) | |||
Set Column Width Based On Total Width Of Other Columns | Excel Programming | |||
Change the width of a single column in a column chart | Charts and Charting in Excel |