Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dear friends,
I use the following macro in order to change my data into euro amounts. Public Const Euro As Double = 0.585274 Sub ConvertEuro() Dim MyCell As Range For Each MyCell In Selection If IsNumeric(MyCell) And MyCell < "" Then 'And MyCell.HasFormula = False Then MyCell.Value = Application.Round(MyCell.Value / Euro, 2) MyCell.NumberFormat = "‚¬0.00" End If Next MyCell End Sub Is there any possibility to set the NumberFormat to Accounting or Currency? The ideal should be to be asked and then to select either Accounting or Currency Format. Thanking you in advance, GeorgeC |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Euro symbol using Accounting format in Excel | Setting up and Configuration of Excel | |||
How do I convert euro to us dollars in excel? | Charts and Charting in Excel | |||
I want to convert USD to Euro? | Excel Discussion (Misc queries) | |||
I want to convert USD to Euro? | Excel Discussion (Misc queries) | |||
how do i convert EURO to GBP? | Setting up and Configuration of Excel |