VBA: Add formula to a cell's string using VBA

Lefemmenikita

Board Regular
Joined
Jan 28, 2014
Messages
59
Office Version
  1. 2013
Platform
  1. Windows
HI

I am exporting a 6 digit number from a system into Excel. When this is pasted into excel, this is reformatted as a number instead of being left as a text value.

Column A with the code shows what the reformatted number looks like. Column B shows what I want it to look like.

Book1
AB
1CodeOutput Wanted
26571006571
3909856909856
42210002210
598521098521
Sheet1
Cell Formulas
RangeFormula
B2:B5B2=REPT(0,6-LEN(A2))&A2



This is ok when the range of the reformatted cells remains the same and/or I am able to use a helper column like column B to insert a formula.

However, the reformatted numbers are not always in the same place and I am not always able to insert another column to insert a formula.

What I was wanting was a macro which allows me to reformat only the selected active cells.

e.g. If I select cell A4, I want VBA to insert a formula similar to =REPT(0,6-LEN(activecell.value))&Activecell.value

I have seen this done with 'round' formulas though I don't know how to adapt this to my current requirements.

Thanks
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Does this do what you want?

VBA Code:
Sub ReformatNumbers()
  With Selection
    .NumberFormat = "@"
    .Value = Evaluate("right(rept(0,6)&" & .Address & ",6)")
  End With
End Sub
 
Upvote 0
Thank You Peter_SSs, That is definitely what I want.

Is there a way to tweak this slightly though so that if you select a range, it does that for every cell in the range?

I tried selecting multiple cells, though it copies the value from the first cell to the others in a range
 
Upvote 0
It should work for multiple cells if they are in a contiguous selection.
Do you you mean that you want to select several disjoint ranges?

If so, try this one

VBA Code:
Sub ReformatNumbers_v2()
  Dim rng As Range
  
  For Each rng In Selection.Areas
    With rng
      .NumberFormat = "@"
      .Value = Evaluate("right(rept(0,6)&" & .Address & ",6)")
    End With
  Next rng
End Sub
 
Upvote 0
Thanks. That works without copying the same cell value into all cells, if I select each cell individually (CTRL + click).

For contiguous cells, it copies the first cell value down the range .

Is that supposed to do that?
 
Upvote 0
For contiguous cells, it copies the first cell value down the range .

Is that supposed to do that?
No, and it does not do that for me.

For example, before:
1598348051567.png


After
1598348096513.png
 
Upvote 0
That's really weird.
I am highlighting the range and running the macro and am getting the following result
macro.png
 
Upvote 0
So far I have not been able to reproduce that.

1. Please refer to the 3rd bullet point in my signature block below.

2, Before you run the code, what is the cell format of A3:A4 (eg General, Text, Number etc)?
 
Upvote 0
Thanks for updating your profile. (y)

The cells are formatted as general
My setup is the same as that and I have not been able to reproduce the behaviour you showed in post 7.

You could try this version which does each cell individually.

About how many rows of data will you be selecting? If it is a very large number of rows then we might look at another way still.

VBA Code:
Sub ReformatNumbers_v3()
  Dim rng As Range
  
  Application.ScreenUpdating = False
  For Each rng In Selection
    With rng
      .NumberFormat = "@"
      .Value = Evaluate("right(rept(0,6)&" & .Address & ",6)")
    End With
  Next rng
  Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,545
Messages
6,120,128
Members
448,947
Latest member
test111

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