daren.beaney

New Member
Joined
Jun 14, 2011
Messages
16
Hi, I've spent nearly a day on trying to find a solution to my problem. I've created a data entry form which goes into an excel sheet, one of the columns is in £ and obviously the value that is entered ends up being text instead of the required format, Accounting.

I've tried code relating to NumberFormat and many other variations including recording the Text to Column process which works fine on a single cell when the code runs but not a range.

This is what I've recently been trying with limited success on multiple cells within the column

Original code

Code:
Sub Macro2()


    Range("N3").Select
    Selection.TextToColumns Destination:=Range("N3"), DataType:=xlFixedWidth, _
        FieldInfo:=Array(0, 1), TrailingMinusNumbers:=True
End Sub

Modified Code:

Code:
Range("MaritimeFiscal").Select
 
        Selection.TextToColumns Destination:=Range("MaritimeFiscalStart"), DataType:=xlFixedWidth, _
        FieldInfo:=Array(0, 1), TrailingMinusNumbers:=True

MaritimeFiscalStart = N2 - the first cell in the column.
MaritimeFiscal = dynamic range in the column

Any support on this issue will be well received.

Thanks in advance,
Daren
 
Last edited:

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Are there things in column N that would get messed up by doing a "Text to Columns" on them?
If not, just use:
Code:
Sub Macro2()
    Columns("N:N").TextToColumns Destination:=Range("N1"), DataType:=xlFixedWidth, _
        FieldInfo:=Array(0, 1), TrailingMinusNumbers:=True
End Sub
 
Upvote 0
Found a solution, I removed the currency format on the textbox in the userform. Changed it from "£#,###.00" to "#,###.00".
 
Upvote 0
Can you please post a small sample of the values you are trying to convert so I can try to recreate it and test it here?
Be sure to include different scenarios, if they exist (i.e. if some have symbols and others do not, etc).

EDIT: Just saw your reply, so it appears that you are all set.
 
Last edited:
Upvote 0
Can you please post a small sample of the values you are trying to convert so I can try to recreate it and test it here?
Be sure to include different scenarios, if they exist (i.e. if some have symbols and others do not, etc).

EDIT: Just saw your reply, so it appears that you are all set.

Hi, yes it seems easier modifying the textbox format. The value that was being entered for example is £350.00, which kept on being up the convert icon.
 
Upvote 0
OK. A simple Search & Replace (replacing £ with nothing) would probably work too (either manually or via VBA code).
But I agree, it is probably better to handle it at the source!
 
Upvote 0
OK. A simple Search & Replace (replacing £ with nothing) would probably work too (either manually or via VBA code).
But I agree, it is probably better to handle it at the source!

Yes that would make sense, Thanks for the suggestion.
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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