Data in cells is "text" instead of "number"

morzapo

New Member
Joined
Aug 1, 2011
Messages
7
Hello!

I'm beginning to lose my mind on this problem. :mad:

I made a reasonably complex form, where user (me) must insert a lot of data in (mainly) TextBoxes and ComboBoxes:


I wont' bother with translation, but some of you will maybe recognize that I'm trying to calculate heat loses of a room.

Anyways - most of the data is inserted in TextBoxes as a normal number - for example: 0,756 [W/m^2K] (we use comma for decimal delimiter).

All the data is then saved in a worksheet with press on a button. Code behind it is as seen bellow (just an example):

Code:
Worksheets("Saved_data").Cells(row_index, 5).Value = Upper_wall_thickness
Worksheets("Saved_data").Cells(row_index, 6).Value = Right_wall_thickness
Worksheets("Saved_data").Cells(row_index, 7).Value = Bottom_wall_thickness
Worksheets("Saved_data").Cells(row_index, 8).Value = Left_wall_thickness
BUT(!) after I check the worksheet "Saved_data", I can see an error in all cells that was taken from TextBoxes. Excel wrote all this data as text and if I place mouse cursor over small sign with exclamation mark I can see error message: "The number in this cell is formatted as text or preceded by an apostrophe."

Of course I can use an option "Convert to number", but there can be a lot of cells with this error and they are placed all over the "Saved_data" worksheet. It is not only time consuming, but it also prevents to do some additional operations I intend to do on "Saved_data" worksheet.

I tried EVERYTHING:


  • I placed various format rows prior (and after) to each code row shown above (for example):
Code:
Worksheets("Saved_data").Cells(row_index, 5).NumberFormat = "#,##0,00"
Worksheets("Saved_data").Cells(row_index, 5).Value = Upper_wall_thickness
Worksheets("Saved_data").Cells(row_index, 6).NumberFormat = "#,##0,00"
Worksheets("Saved_data").Cells(row_index, 6).Value = Right_wall_thickness
Worksheets("Saved_data").Cells(row_index, 7).NumberFormat = "#,##0,00"
Worksheets("Saved_data").Cells(row_index, 7).Value = Bottom_wall_thickness
Worksheets("Saved_data").Cells(row_index, 8).NumberFormat = "#,##0,00"
Worksheets("Saved_data").Cells(row_index, 8).Value = Left_wall_thickness
  • I declared each variable a double:
Code:
Dim Upper_wall_thickness As Double
Dim Right_wall_thickness As Double
Dim Bottom_wall_thickness As Double
Dim Left_wall_thickness As Double
  • I used some VBA code I found on Internet to solve this problems:
Code:
Private Sub CommandButton1_Click()

For Each xCell In Selection
   xCell.Value = CDec(xCell.Value)
Next xCell

End Sub
  • etc.

... but NOTHING worked! Can anyone help me with this? :(
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Try this below. By performing arithmatic on a value, it forces it to numerical.

Code:
Worksheets("Saved_data").Cells(row_index, 5).Value = Upper_wall_thickness + 0
Worksheets("Saved_data").Cells(row_index, 6).Value = Right_wall_thickness + 0
Worksheets("Saved_data").Cells(row_index, 7).Value = Bottom_wall_thickness + 0
Worksheets("Saved_data").Cells(row_index, 8).Value = Left_wall_thickness + 0
 
Upvote 0
Try this below. By performing arithmatic on a value, it forces it to numerical.
...

It looks like it works, but I get Run-time error '13' (Type mismatch) on some cells.
Although I'm not a programmer at all I think I know what is a problem. At form initialization all values of TextBoxes must be set to "0" (zero) not "" (blank) as I have it now.

I'll report progress tomorrow. Now I must catch some sleep, since it is midnight here in central Europe.
 
Upvote 0
When you capture the textbox value you can also trap this error:

Code:
Dim x As Double
x = IIF(Textbox1.Value = "", 0, TextBox1.Value)

This still won't work if someone puts actual text and not a number in the textbox - if you are the user, then that won't happen. If others are users you can use more rigorous validations.
 
Upvote 0
Try this below. By performing arithmatic on a value, it forces it to numerical.
...

CWatts, thank you 1000-times!!! It works! :)


When you capture the textbox value you can also trap this error:

Code:
Dim x As Double
x = IIF(Textbox1.Value = "", 0, TextBox1.Value)
This still won't work if someone puts actual text and not a number in the textbox - if you are the user, then that won't happen. If others are users you can use more rigorous validations.

Yes the user will only be me, but during programming I was asking myself constantly how to make as you said "rigorous validations". Can you give me a hint how to assure that I cannot somehow insert "1O" (with letter "o") instead of "10" (number "ten")?
There are a lot of TextBox-es and I cannot imagine to make 60+ MsgBox-es with warnings that I inserted wrong character. :eek:
 
Upvote 0

Forum statistics

Threads
1,214,982
Messages
6,122,573
Members
449,089
Latest member
Motoracer88

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