Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Junior Member
 
Posts: 1
Default converting money formatting

UPDATE: DOH I can divide by 1000.

I need to convert a column of money data into a format that is recognized by QuickBooks Online so I can upload bank account transactions. I am in Tunisia where the bank gives us the data in a bad format that needs to be converted.

The money data looks like this.
Amount
-565,000
-400,645
-5,000

This needs to look like
Amount
-565.000
-400.645
-5.000

I thought I could easily change the "," to an "." but the "," is not actually in the field as as excel thinks its the thousand character. Also thought I could use LEFT and RIGHT but the LEFT numbers are always different. The RIGHT numbers will always be 3 though as Tunisian Dinar is thousandth of a DINAR.

Hope I am making sense and that someone can help.
thanks in advance.

Last edited by IpswichBlues : August 26th 14 at 01:49 PM
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,514
Default converting money formatting

I need to convert a column of money data into a format that is
recognized by QuickBooks Online so I can upload bank account
transactions. I am in Tunisia where the bank gives us the data in a
bad format that needs to be converted.

The money data looks like this.
Amount
-565,000
-400,645
-5,000

This needs to look like
Amount
-565.000
-400.645
-5.000

I thought I could easily change the "," to an "." but the "," is not
actually in the field as as excel thinks its the thousand character.
Also thought I could use LEFT and RIGHT but the LEFT numbers are
always different. The RIGHT numbers will always be 3 though as
Tunisian Dinar is thousandth of a DINAR.

Hope I am making sense and that someone can help.
thanks in advance.


You can do this with VBA. Change the Number format of the column to
text, select the cells with amounts and loop through the selection...


Sub ReformatBankAmounts()
Dim c As Range
For Each c In Selection
c = Format(c / 1000, "000.000")
Next 'c
End Sub

--
Garry

Free usenet access at http://www.eternal-september.org
Classic VB Users Regroup!
comp.lang.basic.visual.misc
microsoft.public.vb.general.discussion


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 621
Default converting money formatting

Enter 1000 in a cell.

Copy that cell

Select you range of money data and paste specialdivideokesc

Delete the 1000 cell.

Gord



On Tue, 26 Aug 2014 13:45:58 +0100, IpswichBlues
wrote:


I need to convert a column of money data into a format that is
recognized by QuickBooks Online so I can upload bank account
transactions. I am in Tunisia where the bank gives us the data in a bad
format that needs to be converted.

The money data looks like this.
Amount
-565,000
-400,645
-5,000

This needs to look like
Amount
-565.000
-400.645
-5.000

I thought I could easily change the "," to an "." but the "," is not
actually in the field as as excel thinks its the thousand character.
Also thought I could use LEFT and RIGHT but the LEFT numbers are always
different. The RIGHT numbers will always be 3 though as Tunisian Dinar
is thousandth of a DINAR.

Hope I am making sense and that someone can help.
thanks in advance.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
having issues converting from 97-07 with conditional formatting alliedghill Excel Worksheet Functions 1 January 13th 10 08:59 PM
FORMATTING/CONVERTING TO ZULU TIME MM Excel Discussion (Misc queries) 6 May 6th 09 03:16 PM
Keeping Column Formatting When Converting to TXT ConfusedNHouston Excel Discussion (Misc queries) 1 April 16th 08 02:47 PM
Converting a formula for automatic formatting criteria Rominall Excel Worksheet Functions 2 October 22nd 07 08:40 PM
Converting numbers and number formatting to a CSV file ? Cecilia Excel Worksheet Functions 1 March 30th 07 07:42 PM


All times are GMT +1. The time now is 07:03 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"