Im using macros to open a form that fills in data in excel. the data itself uses £ signs for monetary values, but the form WHEN RUN WITH A MACRO uses $. If I run the form normally (by clicking on form button) it uses £ - exactly what I want. Any ideas on how to make it £ ALL the time would be greatly appreciated Thanks
instead of entering it in excel as a string like saying Cell(A4).text = "£342.20" or whatever the syntax is to enter cell data in Excel is... Try entering the character code itself. Try Cell(A4).text = chr(156) & "342.20"