View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Karen53 Karen53 is offline
external usenet poster
 
Posts: 333
Default Accounting Format not aligned

Hi,

I have rows with formulas all input via vba with an accounting format.
These are all added by the same code but the numbers do not line up. I have
checked they are all right aligned but are not visibly right aligned. Some
cells are slightly off to the left just about a half a digit.

with MainPagepg
With .Range("M" & NextRow)
.NumberFormat = "_(* #,##0.00_);_(* (#,##0.00);_(* ""-""??_);_(@_)"
.HorizontalAlignment = xlRight
.FormulaR1C1 = "='" & ShName & "'!R21C11"
End With
End with

It must be a setting as it is only in some cells. since they show right
aligned I don't know what else to check.
--
Thanks for your help.
Karen53