Converting Text Values To Values

ackalbo

New Member
Joined
Mar 10, 2013
Messages
46
Hello guys & gals

Below is an example of the report I have generated by our biometric system:

Excel 2010
ABCDE
5Dept Manager: MY Total Number of Log: 58
6Name of EmployeeLog - InLog - OutTotal Hrs
7xxx9/1/2013 2:53:44 PM9/2/2013 12:04:41 AM9.18
8zzz9/1/2013 2:53:22 PM9/1/2013 6:13:38 PM3.33
9zzz9/2/2013 3:40:20 PMNo Log Out0
10zzz9/3/2013 3:25:36 PM9/3/2013 6:27:28 PM3.03
11zzz9/5/2013 3:05:08 PMNo Log Out0
12zzz9/6/2013 3:39:57 PMNo Log Out0
13zzz9/7/2013 3:59:26 PMNo Log Out0
14aaa9/2/2013 2:53:34 PMNo Log Out0
15aaa9/3/2013 3:26:27 PMNo Log Out0
16aaa9/4/2013 3:00:42 PMNo Log Out0
17aaa9/5/2013 3:03:58 PMNo Log Out0
18aaa9/6/2013 2:41:42 PM9/7/2013 12:02:56 AM9.35
19aaa9/7/2013 3:35:38 PMNo Log Out0

<tbody>
</tbody>
Sheet1

My concern is this, all the entries in column C and D are proceeded by an apostrophe and I need to remove the apostrophe from each and every one in order to use the entries in a meaningful way. In total I have, on average, approx 850 entries to change every week. I have had a look at ASAP Utilities and I could find an option to insert the apostrophe but not to remove one.

Can anyone suggest anything please?

Many thanks
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Thx Redwolfx but I can't seem to find a way for Find/Replace to work without having to individually type each one...
 
Upvote 0
maybe try selecting column C then data...text to columns ...finish or

try putting the number 1 in a cell, copy it, select column C, paste special values and check multiply
 
Upvote 0
Try this small macro:

Code:
Sub durall()
    For Each r In ActiveSheet.UsedRange
        If r.PrefixCharacter = "'" Then
            r.Value = r.Value
        End If
    Next r
End Sub
 
Upvote 0
Thank you very much for your ideas everyone :)

Gary's Student - Your macro worked like a charm - Thank you very much. Now, for my own personal benefit as I've just started to learn VBA, I shall dissect your code and try to understand it :eek:
 
Upvote 0

Forum statistics

Threads
1,215,457
Messages
6,124,941
Members
449,197
Latest member
k_bs

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