View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc,microsoft.public.windows.group_policy,microsoft.public.excel
Mike H Mike H is offline
external usenet poster
 
Posts: 11,501
Default R1C1 Referency Style Policy

Hi,

I'm not sure about group policy but you could use the workbook open event to
change it

Private Sub Workbook_Open()
With Application
.ReferenceStyle = xlA1
End With
End Sub

Mike

"Jasper Recto" wrote:

Is there a way to prevent the R1C1 reference policy from being used in excel
by using a group policy?

If not, how can I prevent it from being the default setting?

Thanks,
Jasper