vba code to split cells that contain "*" and do nothing with cells that do not contain "*"

Maritza

New Member
Joined
Sep 25, 2018
Messages
3
Hello,

This is my first post here so I hope it will go well.
I have learned to write macro's via the internet which is based on copying and adjusting codes that i find on forums like this and this works perfectly fine. However I am stuck on a certain point right now and can't seem to get it to work.

I want to split one cell into two cells before and after the asterisk.
so for instance abcd123*def456 will become abc123 and def456 in adjacent columns. This works perfectly fine (see my code below).

Rich (BB code):
Sub separate cells()
Dim rngBAs Range    Dim rng As Range
    Dim SH As Worksheet
    Set SH = ActiveSheet
    Set rngB = SH.Range("F2:F" &SH.Range("F" & SH.Rows.Count).End(xlUp).Row)
    For Each rng In rngB
            splitVals = Split(rng.Value,"*")
        totalVals = UBound(splitVals)
        Range(Cells(rng.Row, rng.Column + 1),Cells(rng.Row, _
                rng.Column + 1 + totalVals)).Value= splitVals
        'Else
        'End If
    Next
End Sub



However, now I want to build an If else function in there.
When there is no asterisk "*" in the cell, then I do not want the macro to split the cell (because later I want to filter on the splitted cells).
So I need a code that does something like: If there is an asterisk in the cell, then do my code, else do nothing. I tried to add the lines below, before the splitvalls function and when I run it do not get an error but the cells are also not splitted anymore.


'If InStr(1, "F2","*", 1) Then


'If (cell.Value) = "*" Then
<strike></strike>
Thanks in advance

<strike></strike><strike></strike>
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
Hi Maritza,

Welcome to MrExcel!!

Here's two similar ways to do the job:

Code:
Sub Macro1()

    Dim rngMyCell As Range
    Dim strSplitVals() As String
    Dim i As Integer
    
    Application.ScreenUpdating = False
    
    For Each rngMyCell In ActiveSheet.Range("F2:F" & ActiveSheet.Range("F" & ActiveSheet.Rows.Count).End(xlUp).Row)
        If InStr(rngMyCell, "*") > 0 Then
            strSplitVals = Split(rngMyCell.Value, "*")
            For i = LBound(strSplitVals) To UBound(strSplitVals)
                rngMyCell.Offset(0, i + 1) = strSplitVals(i)
                rngMyCell.Offset(0, i + 1) = strSplitVals(i)
            Next i
        End If
    Next rngMyCell
    
    Application.ScreenUpdating = True

End Sub
Sub Macro2()

    Dim rngMyCell As Range
    Dim strSplitVals() As String
        
    Application.ScreenUpdating = False
    
    For Each rngMyCell In ActiveSheet.Range("F2:F" & ActiveSheet.Range("F" & ActiveSheet.Rows.Count).End(xlUp).Row)
        If InStr(rngMyCell, "*") > 0 Then
            strSplitVals = Split(rngMyCell.Value, "*")
            rngMyCell.Offset(0, 1) = strSplitVals(0)
            rngMyCell.Offset(0, 2) = strSplitVals(1)
        End If
    Next rngMyCell
    
    Application.ScreenUpdating = True

End Sub

As the second macro doesn't loop through the array it's probably the preferred but with only two items performance will be very similar (if not the same) between the two.

Hope that helps,

Robert
 
Upvote 0
Here is another macro that you can consider...
Code:
[table="width: 500"]
[tr]
	[td]Sub SplitOnAsterisk()
  With Range("F2", Cells(Rows.Count, "F").End(xlUp))
    .TextToColumns Range("G2"), xlDelimited, , , False, False, False, False, True, "*"
    .Offset(, 2).SpecialCells(xlBlanks).Offset(, -1).Resize(, 1).Clear
  End With
End Sub[/td]
[/tr]
[/table]
 
Upvote 0
You're welcome :)

Make sure to also try Rick's nifty solution too ;)
 
Upvote 0

Forum statistics

Threads
1,213,565
Messages
6,114,338
Members
448,569
Latest member
Honeymonster123

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