|
Question : Set Font For Workbook or Worksheet Through VBA
|
|
Hi,
How can I set the font at the Workbook or Worksheet level so that all cells use this font? Somthing like:
objWS.Range(EntireSheet).Font.Name = "arial"
except at the beginning of the code, before I know what the range of the entire worksheet is.
Thanks
|
|
Answer : Set Font For Workbook or Worksheet Through VBA
|
|
use this
objWS.Cells.Font.Name = "Arial"
|
|
|