Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. With objTable.Rows(the_row).Cells(the_col).Shape.TextFrame.TextRange.Font
  2. .Size = 12
  3. .Color = RGB(0, 0, 102)
  4. End With
  5. With objTable.Rows(the_row).Cells(the_col).Shape.TextFrame
  6. .VerticalAnchor = msoAnchorMiddle
  7. End With
  8.  
  9. With objTable.Rows(the_row).Cells(the_col).Shape.TextFrame
  10.  
  11. 'Internal margin:
  12. .MarginLeft = 'value goes here
  13. .MarginRight = 'value goes here
  14. .MarginTop = 'value goes here
  15. .MarginBottom= 'value goes here
  16.  
  17.  
  18. 'number Format:
  19.  
  20. .TextRange.text = Format(1000, "#,##0.00") 'replace 1000 with your value
  21.  
  22. end with
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement