Two dimensions: collection or dynamic array

Archangelos

New Member
Joined
Aug 21, 2017
Messages
49
Hello guys,

I need a little help.

I have written a piece of code in order to perform massive replacement in the entire workbook.

Code:
Sub fdfd()

Dim SheetCounter As Integer


Dim RowCounter As Integer
Dim ColumnCounter As Integer


For SheetCounter = 1 To ThisWorkbook.Sheets.Count


    Sheets(SheetCounter).Activate
    For RowCounter = 4 To 20
        For ColumnCounter = 3 To 11
            Cells(RowCounter, ColumnCounter).Replace What:="p. cloudy", Replacement:="Partially cloudy", LookAt:=xlWhole  'HERE: first      pair (replace what, replace with)
            Cells(RowCounter, ColumnCounter).Replace What:="clear", Replacement:="Clear sky", LookAt:=xlWhole                 'HERE: second pair (replace what, replace with)
            Cells(RowCounter, ColumnCounter).Replace What:="cloudy", Replacement:="Cloudy", LookAt:=xlWhole                  'HERE: third     pair (replace what, replace with)
            Cells(RowCounter, ColumnCounter).Replace What:="rain", Replacement:="Rain", LookAt:=xlWhole                         'HERE: fourth    pair (replace what, replace with)


        Next ColumnCounter
    Next RowCounter


Next SheetCounter






End Sub
The code works fine. However, there is something that bothers me. I have to call the command « Cells(RowCounter, ColumnCounter).Replace ... ...» many times. I would like to make a Collection, nest a third for...loop in the two existing nested for...loop and navigate through the Collection's contents.





I have done something that works with a Collection.
Code:
Dim MetritisRBP As Integer
Dim LastRowInSheetRBP As Integer
Dim PlaceColl As Collection
Dim MegalosMetritis As Long
Dim StringFromColl As String
    'Eliminate proccess
   
    Call s3001_CopyToNewSheet("02_MarkACM", "03_FilterBandPol", 1, 27)
    Sheets("03_FilterBandPol").Activate
    LastRowInSheetRBP = s3002_LastRowWithData("03_FilterBandPol", StiliBPlaceName)
   
    Set PlaceColl = New Collection
    'PlaceColl.Add "9E HV"
    PlaceColl.Add "42E HH"
    PlaceColl.Add "3W LV"
    PlaceColl.Add "3W LH"
    PlaceColl.Add "10E HH"
    PlaceColl.Add "10E CR"
    PlaceColl.Add "10E CL"
 
 
    If PlaceColl.Count > 0 Then
   
       For MetritisRBP = LastRowInSheetRBP To 1 Step -1
           For MegalosMetritis = 1 To PlaceColl.Count
               If Cells(MetritisRBP, StiliBPlaceName) = PlaceColl(MegalosMetritis) Then
                  Rows(MetritisRBP).Delete
               End If
           Next MegalosMetritis
       Next MetritisRBP
    End If





The code above works but ... ... here comes the big Bee Yu Tee. In order to apply the Collection thing in the first code, I need a two-dimension Collection. Can it be done?

I am thinking of adding records to a Cellection and then navigate through the contents of the Collection.

Any help would be appreciated.
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Maybe something like this (no loops)

Code:
Sub aTest()
    Dim dic As Object, RngToClean As Range, vKey As Variant
    Dim SheetCounter As Long
    
    Set dic = CreateObject("Scripting.Dictionary")
    dic("p. cloudly") = "Partially cloudly"
    dic("clear") = "Clear sky"
    dic("cloudly") = "Cloudly"
    dic("rain") = "Rainy"
    
    For SheetCounter = 1 To ThisWorkbook.Sheets.Count
        Sheets(SheetCounter).Activate
        Set RngToClean = Range(Cells(4, 3), Cells(20, 11))
        With RngToClean
            For Each vKey In dic.keys
                .Replace What:=vKey, Replacement:=dic(vKey), LookAt:=xlWhole
            Next vKey
        End With
    Next SheetCounter

End Sub

I used a Dictionary object
See
https://excelmacromastery.com/vba-dictionary/

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,214,881
Messages
6,122,074
Members
449,064
Latest member
MattDRT

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