Copy and Paste format issue

jamesdowell

New Member
Joined
Nov 6, 2013
Messages
7
Hi Lovely People of Mr Excel,

HSBC won't let me download more than 90 rows of transactions in excel format. This is an issue when I want to get every transaction for 2013 from my current account. So what I have done it view my previous statements which load up in the browser in whatever format that is...

I have copy and pasted all that data from all months into a spreadsheet. It looks great BUT the problem is that I cannot sum any of the figures. I think this is a formatting issue, something like, because I have copy and pasted the data then excel cannot see it as a figure it can calculate.

I have tried changing the format of the cells to accounting and currency and all the others but nothing gets them to sum.

Has anyone had this issue and how can I solve it?

Thanks in advance.

JamesDowell
 
Is it just ONE trailing character after the number? Or multiple?


Also, just to clarify..
These formulas don't 'REMOVE' the extra character from the original cell.
Instead, they CREATE a new value in a different cell based on the original.

So if A1 is your original data
and in B1 you puut
=TRIM(A1)+0 (or the other formula)

Then it's B1 that you should now be trying to sum, not A1.
 
Upvote 0

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
If this returns #Value! error
=TRIM(A1)+0
It's because your trailing spaces are not really space. They're some other character.

If this returns #Value! error
=LEFT(A1,LEN(A1)-1)+0
It's because there is more than one of those trailing 'spaces'
The formula is designed to only remove 1 character from the end of the value.


for those given example values, say 4.30
What does this return
=LEN(A1)
Where A1 is the cell with 4.30

If it were a real number, it would = 4.
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,841
Members
449,051
Latest member
excelquestion515

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top