Help with adding formula under every cell in ColumnA where it contains data

Anfinsen

Board Regular
Joined
Apr 11, 2023
Messages
144
Office Version
  1. 365
Platform
  1. Windows
Good morning all!
I have data in ColumnA, with what can be, a random, number of blanks between them. I wanted to format the cell directly under any cell in columnA where data exists, to use "Free 3 of 9 Extended" font. The code below works beautifully for that, and only formats the cells directly below the cell where data exists, in columnA.

Sub AddBarcodeToPart()
Dim c As Range, sh1 As Worksheet
Set sh1 = Sheets("Pick List")
For Each c In sh1.Range("A6", Cells(Rows.Count, "A").End(xlUp))
If c.Value <> "" Then

c.Offset(1, 0).Font.Name = "Free 3 of 9 Extended"

End If
Next

End Sub

However, when I try to use a similar code, to add the formula needed to make it a readable barcode, it adds the formula to every cell instead of the just the offset reference. (It also doesn't add the needed quotes around the * correctly to make this a readable barcode).

Sub ValueForBarcode()
Dim c As Range, sh1 As Worksheet
Set sh1 = Sheets("Pick List")
For Each c In sh1.Range("A6", Cells(Rows.Count, "A").End(xlUp))
If c.Value <> "" Then

c.Offset(1, 0).Formula = "*" & c & "*"

End If
Next

End Sub

Any ideas what I could be doing wrong here? (I am sure there are probably better ways to achieve my desired result, but this is my starting point)
Thanks in advance for any help!
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Can you confirm that the cells you think are empty actually are, ie no spaces, etc.

As for your formula, try using double quotes...something like this: c.Offset(1, 0).Formula = "=" & ""*"" & c & ""*""
 
Upvote 0
Hi @Anfinsen.
Thanks for posting on the forum.

I'm not quite sure what formula you want to put, but I'm assuming it's something like this:
VBA Code:
Sub ValueForBarcode()
  Dim i As Long, sh1 As Worksheet
  Set sh1 = Sheets("Pick List")
  For i = sh1.Range("A" & Rows.Count).End(3).Row To 6 Step -1
    With sh1.Range("A" & i)
      If .Value <> "" Then
        .Offset(1, 0).Formula = "=""*""&" & .Address(0, 0) & "&""*"""
      End If
    End With
  Next
End Sub

If indeed after each cell with a value there is a space, then this can also be the case, the following code is smaller and works faster.
VBA Code:
Sub ValueForBarcode_v2()
  Dim ar As Range, sh1 As Worksheet
  Set sh1 = Sheets("Pick List")
  For Each ar In sh1.Range("A6", sh1.Cells(Rows.Count, "A").End(xlUp)).SpecialCells(xlCellTypeConstants).Areas
    ar.Offset(1, 0).Formula = "=""*""&" & ar.Address(0, 0) & "&""*"""
  Next
End Sub


By the way, in your first macro you need to reference the sheet in Cells, you should always reference the sheet in any range of cells:
Rich (BB code):
Sub AddBarcodeToPart()
  Dim c As Range, sh1 As Worksheet
  Set sh1 = Sheets("Pick List")
  For Each c In sh1.Range("A6", sh1.Cells(Rows.Count, "A").End(xlUp))
    If c.Value <> "" Then
      c.Offset(1, 0).Font.Name = "Free 3 of 9 Extended"
    End If
  Next
End Sub

Note Code Tag:
In future please use code tags when posting code.
How to Post Your VBA Code it makes your code easier to read and copy and it also maintains VBA formatting.

--------------
Let me know the result and I'll get back to you as soon as I can.
Sincerely
Dante Amor
--------------
 
Upvote 1
Solution
Can you confirm that the cells you think are empty actually are, ie no spaces, etc.

As for your formula, try using double quotes...something like this: c.Offset(1, 0).Formula = "=" & ""*"" & c & ""*""He
I can confirm the cells are empty.

I tried using the "escape" quotes as you suggested for the formula, and i get a "type mismatch" error.
 
Upvote 0
Hi @Anfinsen.
Thanks for posting on the forum.

I'm not quite sure what formula you want to put, but I'm assuming it's something like this:
VBA Code:
Sub ValueForBarcode()
  Dim i As Long, sh1 As Worksheet
  Set sh1 = Sheets("Pick List")
  For i = sh1.Range("A" & Rows.Count).End(3).Row To 6 Step -1
    With sh1.Range("A" & i)
      If .Value <> "" Then
        .Offset(1, 0).Formula = "=""*""&" & .Address(0, 0) & "&""*"""
      End If
    End With
  Next
End Sub

If indeed after each cell with a value there is a space, then this can also be the case, the following code is smaller and works faster.
VBA Code:
Sub ValueForBarcode_v2()
  Dim ar As Range, sh1 As Worksheet
  Set sh1 = Sheets("Pick List")
  For Each ar In sh1.Range("A6", sh1.Cells(Rows.Count, "A").End(xlUp)).SpecialCells(xlCellTypeConstants).Areas
    ar.Offset(1, 0).Formula = "=""*""&" & ar.Address(0, 0) & "&""*"""
  Next
End Sub


By the way, in your first macro you need to reference the sheet in Cells, you should always reference the sheet in any range of cells:
Rich (BB code):
Sub AddBarcodeToPart()
  Dim c As Range, sh1 As Worksheet
  Set sh1 = Sheets("Pick List")
  For Each c In sh1.Range("A6", sh1.Cells(Rows.Count, "A").End(xlUp))
    If c.Value <> "" Then
      c.Offset(1, 0).Font.Name = "Free 3 of 9 Extended"
    End If
  Next
End Sub

Note Code Tag:
In future please use code tags when posting code.
How to Post Your VBA Code it makes your code easier to read and copy and it also maintains VBA formatting.

--------------
Let me know the result and I'll get back to you as soon as I can.
Sincerely
Dante Amor
--------------
Dante,
Thank you very much for reviewing and your detailed explanations. It worked perfectly and did exactly what I was attempting to do. Genuinely appreciated. Hope you have a great day!
 
Upvote 1

Forum statistics

Threads
1,214,891
Messages
6,122,101
Members
449,066
Latest member
Andyg666

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