Mark first instance of cell value in column in same row next column

mrpavlos

New Member
Joined
Jul 28, 2018
Messages
23
Hello all.
I just wanted to say thanks again for a great forum, and also for the help I have previously received.
I am wondering if I could have some advice how to write a macro to solve the following problem.

I have been given a spreadsheet in Excel 2010 with a Table, where the dataset is about 250k rows long. In one column of this Table there is a concatenation of values, where these values may appear either just once, or multiple times. My task is to mark in the same row, but in the next column, a number 1 to indicate that this is the first instance of the appearance of this value. For all other instances the cell should be left blank. Please see simple short example below of what I am trying to achieve. I know that a countif formula will achieve the result, and I can also write a macro that will input the countif formula as well, but as I indicated there are 250k rows and growing and I am concerned the processing speed will be very slow. I believe a dictionary would achieve what I want to achieve but I am not sure how to write it. Thanks again for taking the time to look at this, and help

Concatenation Instance

AA158 1

BB158 1

i1CC 1

BB158

i1CC

BB158

i1CC

DD158 1

AA158


Many thanks, Paul
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Which column are you interested in, also is the column to the right blank?
 
Upvote 0
Which column are you interested in, also is the column to the right blank?
Hello Fluff

My apologies for not being clear in my question. The column with the concatenated values would be in column BK on the spreadsheet (the table also starts from column A), with the next column being blank.
Many thanks, Paul
 
Upvote 0
Ok, how about
VBA Code:
Sub mrpavlos()
   Dim Ary As Variant, Nary As Variant
   Dim i As Long
   
   Ary = Range("BK2", Range("BK" & Rows.Count).End(xlUp)).Value2
   ReDim Nary(1 To UBound(Ary), 1 To 1)
   With CreateObject("scripting.dictionary")
      For i = 1 To UBound(Ary)
         If Not .exists(Ary(i, 1)) Then
            Nary(i, 1) = 1
            .Add Ary(i, 1), Nothing
         End If
      Next i
   End With
   Range("M2").Resize(i - 1).Value = Nary
End Sub
 
Upvote 0
Ok, how about
VBA Code:
Sub mrpavlos()
   Dim Ary As Variant, Nary As Variant
   Dim i As Long
  
   Ary = Range("BK2", Range("BK" & Rows.Count).End(xlUp)).Value2
   ReDim Nary(1 To UBound(Ary), 1 To 1)
   With CreateObject("scripting.dictionary")
      For i = 1 To UBound(Ary)
         If Not .exists(Ary(i, 1)) Then
            Nary(i, 1) = 1
            .Add Ary(i, 1), Nothing
         End If
      Next i
   End With
   Range("M2").Resize(i - 1).Value = Nary
End Sub


Cheers Fluff!

That works great! I really appreciate your taking the time to help me on this one. I learnt something new.
Many thanks again, Paul
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,492
Members
448,967
Latest member
visheshkotha

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