VBA results in wrong excel format

Vally 88

New Member
Joined
Nov 20, 2017
Messages
19
Hello All,

I'm using 2 VBA. the below one gives me a new sequential number looking at the previous one to create at sorted number series.
Private Sub ObtenerUltimoValorColumna()
Dim fila As Integer
Dim parar As Boolean
Dim ValorCelda As String
Dim ValorAnterior As String
fila = 32000
parar = False
Do
fila = fila - 1
' ValorAnterior = ValorCelda
ValorCelda = Sheets("Libro Banco").Range("C" & Format(fila)).Value
If ValorCelda <> "" Then parar = True
Loop While (parar = False)
txtComp.Text = ValorCelda + 1
End Sub

the second one:
Private Sub txtFecha_Change()
gives me the possibiity to select the date.

Both macros works perfectly exept for changing the format I gave to Excel. So the first one, results in a string instead of a number format and the second one change the format of the date depending from other macros applied in the same module. Now I'm not sure if this is a macro or excel issue since the macro looks alright to me and it never breaks. I have tried to change the the whole column format from xcel but after applying the macro it keeps chaging again.

They are in Spanish because I haven't build them up but just helping a friend to sort this out, so thank you for the double effort!

Cheers
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Code:
ValorCelda = Sheets("Libro Banco").Range("C" & Format(fila)).Value

This will give you the format of the source cell, no matter how you have the destination cell formatted. Your options are to either format the source cell to the desired parameters or to add a code that formats the destination cell after the value has been entered. Or you can copy and paste special values and formats.
 
Last edited:
Upvote 0
Hello,

Thank you for this. I have solved in this way, please find below:
Range("C" & intFila).Value = Format(txtComp, "0")
 
Upvote 0
ValorCelda is declared as string so whatever value you put in it will be converted to text.

Also, if txtComp is a textbox it's going to hold text values.
 
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,747
Members
448,989
Latest member
mariah3

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