VBA ARRAY CODE HELP

roykana

Active Member
Joined
Mar 8, 2018
Messages
311
Office Version
  1. 2010
Platform
  1. Windows
Dear all master,
Please help for vba array code remove numbers based on specific contents of cell.

ORIIGINAL
ORIGINAL.PNG




RESULT

RESULT.PNG


So remove the numbers based on the contents of the word "KANA".


Thanks

roykana
 
Can't you spot him/her a little extra time?
No, it is not an individual setting but a board-wide setting by member level.
BTW, the somewhat unpleasant back-and-forward between you and the OP about posting technique has arisen because you have not followed #9 of the Forum Rules, so please follow that in the future.

@roykana
See if this resolves both the formatting issue and the multiple texts issue. There should be no need to call a routine multiple times even if this doesn't meet your needs.
I have assumed that these text strings that you are looking for will always be the first text in the cell. If this is not the case, please give some more samples and explanation.

VBA Code:
Sub Replace_Values()
  Dim RX As Object
  Dim a As Variant
  Dim i As Long

  Set RX = CreateObject("VBScript.RegExp")
  RX.IgnoreCase = True
  RX.Pattern = "^(kana|budi|joko)(.+)( \d*)$" '<- You can add more text values separated by "|"
  With ActiveSheet.ListObjects(1).ListColumns(1).DataBodyRange
    a = .Value2
    For i = 1 To UBound(a)
      a(i, 1) = RX.Replace(a(i, 1), "$1$2")
    Next i
    .Value = a
  End With
End Sub
 
Upvote 0

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
You are right. I should not comment on how other people post. I should take a lesson from one of the gurus that just don't answer posts anymore where people do this.
I am guilty of wanting to see a clutter free environment and unfortunately I cannot see any reason why a post with 60+ lines should be repeated in the very next post. But that's just me.
In my opinion, it is akin to someone telling me that I am stupid and probably don't know what I suggested one post previously.
But hey, storage is not at a premium anymore so we'll just continue on.

BTW, thanks for hyperlinking to the rules section. Previously I have attempted to find a "Rules" section but I was never able to find it.
My answer to Fluff was just meant as a tongue in cheek remark. Apparently a poor decision.
My apologies Peter.
 
Upvote 0
My apologies Peter
No problem. :)

I am guilty of wanting to see a clutter free environment and unfortunately I cannot see any reason why a post with 60+ lines should be repeated in the very next post. But that's just me.
No, it isn't just you but it is hard to teach/get people to 'mini-quote' like I have here, or refer generally to a post by number as you suggested. At least when a long quote is inserted, the forum software hides most of it from the viewer & you don't have that much clutter - unless you 'Click to expand ...'

Apart from the rules, other useful information can be found from the main forum page

1624175299910.png
 
Upvote 0
That was rude...

Peter,
what does that SS mean in your name?
I hope it's not about that SS, Nazi ...
I have bad memories of the Nazi scoundrels in the SS
When I see that "SS" sign, I feel sick.
 
Upvote 0
No, it is not an individual setting but a board-wide setting by member level.
BTW, the somewhat unpleasant back-and-forward between you and the OP about posting technique has arisen because you have not followed #9 of the Forum Rules, so please follow that in the future.

@roykana
See if this resolves both the formatting issue and the multiple texts issue. There should be no need to call a routine multiple times even if this doesn't meet your needs.
I have assumed that these text strings that you are looking for will always be the first text in the cell. If this is not the case, please give some more samples and explanation.

VBA Code:
Sub Replace_Values()
  Dim RX As Object
  Dim a As Variant
  Dim i As Long

  Set RX = CreateObject("VBScript.RegExp")
  RX.IgnoreCase = True
  RX.Pattern = "^(kana|budi|joko)(.+)( \d*)$" '<- You can add more text values separated by "|"
  With ActiveSheet.ListObjects(1).ListColumns(1).DataBodyRange
    a = .Value2
    For i = 1 To UBound(a)
      a(i, 1) = RX.Replace(a(i, 1), "$1$2")
    Next i
    .Value = a
  End With
End Sub
Dear Mr. Peter_SSs,
Sorry I'm late to you. Thank you very much for your reply
it runs perfectly. You are indeed a master and I want to learn a lot from you.

as per your explanation that the code runs if the text is in the first. if the searched text is in the first, middle and last part, what is the vba code?
ORIGINAL..PNG

RESULT..PNG


One line of code use trim so I can comment or uncomment as per my need.

Thanks
roykana
 
Upvote 0
Re: "You are indeed a master and I want to learn a lot from you." in Post #26.
Sorry Peter, maybe I still have a slight chance to be included in this exclusive club!

Code:
Sub Strip_Number()
Dim c As Range
    For Each c In Sheets("Sheet1").Range("A2:A" & Sheets("Sheet1").Cells(Rows.Count, 1).End(xlUp).Row)
        If InStr(c, "KANA") <> 0 Then
            c.Value = StripNumber(c.Value)
        End If
    Next c
End Sub

Code:
Function StripNumber(stdText As String)
    Dim str As String, i As Integer
    stdText = Trim(stdText)
    For i = 1 To Len(stdText)
        If Not IsNumeric(Mid(stdText, i, 1)) Then
            str = str & Mid(stdText, i, 1)
        End If
    Next i
    StripNumber = str
End Function
 
Upvote 0
if the searched text is in the first, middle and last part, what is the vba code?

One line of code use trim so I can comment or uncomment as per my need.

See how this goes. (All the digits can be removed at once, rather than checking one character at a time)
As requested (I think) I have provided two choices about how the digit replacements are treated. Use one of those commented lines or the other, not both together.

VBA Code:
Sub Replace_Values_v2()
  Dim RX As Object
  Dim a As Variant
  Dim i As Long
  
  Const Pat1 As String = "kana|budi|joko" '<- You can add more text values separated by "|"
  Const Pat2 As String = "\d"

  Set RX = CreateObject("VBScript.RegExp")
  RX.Global = True
  RX.IgnoreCase = True
  With ActiveSheet.ListObjects(1).ListColumns(1).DataBodyRange
    a = .Value2
    For i = 1 To UBound(a)
      RX.Pattern = Pat1
      If RX.test(a(i, 1)) Then
        RX.Pattern = Pat2
        a(i, 1) = RX.Replace(a(i, 1), " ")  '<- Use this line to replace digits with a space character per post 26 result samples
'        a(i, 1) = Application.Trim(RX.Replace(a(i, 1), ""))  '<- Use this line instead of the above to eliminate excess spaces in the result
      End If
    Next i
    .Value = a
  End With
End Sub
 
Upvote 0
Solution
Re: "You are indeed a master and I want to learn a lot from you." in Post #26.
Sorry Peter, maybe I still have a slight chance to be included in this exclusive club!

Code:
Sub Strip_Number()
Dim c As Range
    For Each c In Sheets("Sheet1").Range("A2:A" & Sheets("Sheet1").Cells(Rows.Count, 1).End(xlUp).Row)
        If InStr(c, "KANA") <> 0 Then
            c.Value = StripNumber(c.Value)
        End If
    Next c
End Sub

Code:
Function StripNumber(stdText As String)
    Dim str As String, i As Integer
    stdText = Trim(stdText)
    For i = 1 To Len(stdText)
        If Not IsNumeric(Mid(stdText, i, 1)) Then
            str = str & Mid(stdText, i, 1)
        End If
    Next i
    StripNumber = str
End Function
Dear Mr. jolivanes,

Thank you for your reply, I appreciate your efforts.
thanks
roykana
 
Upvote 0
See how this goes. (All the digits can be removed at once, rather than checking one character at a time)
As requested (I think) I have provided two choices about how the digit replacements are treated. Use one of those commented lines or the other, not both together.

VBA Code:
Sub Replace_Values_v2()
  Dim RX As Object
  Dim a As Variant
  Dim i As Long
 
  Const Pat1 As String = "kana|budi|joko" '<- You can add more text values separated by "|"
  Const Pat2 As String = "\d"

  Set RX = CreateObject("VBScript.RegExp")
  RX.Global = True
  RX.IgnoreCase = True
  With ActiveSheet.ListObjects(1).ListColumns(1).DataBodyRange
    a = .Value2
    For i = 1 To UBound(a)
      RX.Pattern = Pat1
      If RX.test(a(i, 1)) Then
        RX.Pattern = Pat2
        a(i, 1) = RX.Replace(a(i, 1), " ")  '<- Use this line to replace digits with a space character per post 26 result samples
'        a(i, 1) = Application.Trim(RX.Replace(a(i, 1), ""))  '<- Use this line instead of the above to eliminate excess spaces in the result
      End If
    Next i
    .Value = a
  End With
End Sub
Dear Mr. Peter_SSs,
It's perfect and runs really fast. You are truly a master and let me learn from you and make you as my teacher.

May I ask for recommendations for links that can master vba array code and VBScript.

Thanks
roykana
 
Upvote 0

Forum statistics

Threads
1,215,489
Messages
6,125,093
Members
449,205
Latest member
ralemanygarcia

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