PC Review


Reply
Thread Tools Rate Thread

Convert to Euro - Accounting Format

 
 
George
Guest
Posts: n/a
 
      14th Jan 2008
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
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Is there a Euro version of MS Accounting? Diggler Microsoft Outlook Discussion 1 8th Apr 2008 06:32 PM
Euro symbol using Accounting format in Excel =?Utf-8?B?QW50aG9ueQ==?= Microsoft Excel Setup 1 9th Aug 2007 08:14 AM
I want to convert USD to Euro? =?Utf-8?B?bGVkaXJlbGFuZA==?= Microsoft Excel Misc 0 27th Mar 2006 12:07 AM
RE: I want to convert USD to Euro? =?Utf-8?B?VG9wcGVycw==?= Microsoft Excel Misc 0 26th Mar 2006 11:45 PM
how do i convert EURO to GBP? =?Utf-8?B?QW5naWU=?= Microsoft Excel Setup 0 31st Oct 2005 03:42 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:37 PM.