VBA code to replace NULL

Mangosteenlu

New Member
Joined
Jul 5, 2015
Messages
9
Hi,

I wonder if someone can help me with the VBA code which would make this tedious task so much easier. Thank you very much in advance.

I am working on the analysis for the below data. NULL in column E and F need to be replaced same as the one (not NULL) with the same reference number in Column C. For example, the one highlighted in green color in Column E and F need to be replaced by 52PU001H and EXP6451 respectively as they have the same reference number in Column C (AD01S35838). If column E with the reference of '_TRSP' just leave as it is.



1699354682740.png
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
The problems arise when you have got two different stock numbes and AVL EQU code e.g. for AD10P35836, do you want "_Delivery" or "HG40/0001" and how do we tell which to use?
 
Upvote 0
Run: FixNullCols
add more columns to fix if needed

Code:
Sub FixNullCols()

Range("E1").Select
Fix1ColNull

   'DO MORE NEEDED COLUMNS
'Range("f1").Select
'Fix1ColNull
End Sub


Public Sub Fix1ColNull()  'of activecell
Dim vWord, vUsrSrt, vUsrEnd, vFirst, vLast
Dim i As Integer

On Error Resume Next

Cells(1, ActiveCell.Column).Select
While ActiveCell.Value <> ""
   If ActiveCell.Value = "NULL" Then ActiveCell.Value = ""

   ActiveCell.Offset(1, 0).Select     'next row
Wend
End Sub
 
Upvote 0
@ranman256 that comes nowhere near what the OP is asking for, all it's doing is clearing the cells and that is NOT what the OP wants.
 
Upvote 0
The problems arise when you have got two different stock numbes and AVL EQU code e.g. for AD10P35836, do you want "_Delivery" or "HG40/0001" and how do we tell which to use?
Hi Offthelip, thanks for reply. If it is the delivery, just leave as it is. In the example you mentioned, HG40/0001 will be the option, not _delivery. Let me know if you have more questions.
 
Upvote 0
Run: FixNullCols
add more columns to fix if needed

Code:
Sub FixNullCols()

Range("E1").Select
Fix1ColNull

   'DO MORE NEEDED COLUMNS
'Range("f1").Select
'Fix1ColNull
End Sub


Public Sub Fix1ColNull()  'of activecell
Dim vWord, vUsrSrt, vUsrEnd, vFirst, vLast
Dim i As Integer

On Error Resume Next

Cells(1, ActiveCell.Column).Select
While ActiveCell.Value <> ""
   If ActiveCell.Value = "NULL" Then ActiveCell.Value = ""

   ActiveCell.Offset(1, 0).Select     'next row
Wend
End Sub
Hi Ranman256, Thanks for the code. I tested it and did not work the way i want it to be. thanks
 
Upvote 0
See if this does what you need.
Note: I have assumed that
• _TRSP & _DELIVERY occur together and am only testing Column E for _TRSP.
• That NULL will appear in both columns and am only testing Column E for NULL

VBA Code:
Sub RepeatDetails()
    Dim shtData As Worksheet
    Dim rngData As Range, arrData As Variant
    Dim rowLast As Long, i As Long, iToUse As Long
    Dim dictData As Object, dictKey As String
   
    Set shtData = ActiveSheet                   ' Ideally put in the sheet name using Worksheets("Sheet_Name")
    With shtData
        rowLast = .Range("E" & Rows.Count).End(xlUp).Row
        Set rngData = .Range("C2:F" & rowLast)
        arrData = rngData.Value
    End With

    Set dictData = CreateObject("Scripting.dictionary")
    dictData.CompareMode = vbTextCompare
   
    ' Load details range into Dictionary
    For i = 1 To UBound(arrData)
        dictKey = arrData(i, 1)
        If Not dictData.exists(dictKey) Then
            dictData(dictKey) = 0
        End If
       
        If arrData(i, 3) <> "NULL" And arrData(i, 3) <> "_TRSP" Then
            dictData(dictKey) = i
        End If
    Next i
   
    ' Update Columns E & F to Valid Values
    For i = 1 To UBound(arrData)
        dictKey = arrData(i, 1)
        iToUse = dictData(dictKey)
        If iToUse <> i And iToUse <> 0 And arrData(i, 3) = "NULL" Then
            arrData(i, 3) = arrData(iToUse, 3)
            arrData(i, 4) = arrData(iToUse, 4)
        End If
    Next i
   
    With rngData.Resize(, 1)
        .Offset(, 2).Value = Application.Index(arrData, 0, 3)
        .Offset(, 3).Value = Application.Index(arrData, 0, 4)
    End With
End Sub

In case it helps anyone else who wants to have a go here is my sample data:

20231108 VBA Dictionary Repeat Value Mangosteenlu.xlsm
CDEF
1AVN_USERAVN_RAISAVL_EQUALAVL_STOCK
2AD01S35838NULLNULL
3AD01S3583852PU001HEXP6451
4AD01S35838NULLNULL
5AD01S35838NULLNULL
6AD01S35838NULLNULL
7AD01S35838_TRSP_DELIVERY
8AD10P35817_TRSP_DELIVERY
9AD10P35817NULLNULL
10AD10P35817XH2411HB37/0002
11AD10P35825_TRSP_DELIVERY
12AD10P35825NULLNULL
13AD10P35825NULLNULL
14AD10P35825NULLNULL
15AD10P35825NULLNULL
16AD10P3582532EX003SEX891
Data
 
Upvote 0
Solution
VBA Code:
Sub RepeatDetails()
Dim shtData As Worksheet
Dim rngData As Range, arrData As Variant
Dim rowLast As Long, i As Long, iToUse As Long
Dim dictData As Object, dictKey As String

Set shtData = ActiveSheet ' Ideally put in the sheet name using Worksheets("Sheet_Name")
With shtData
rowLast = .Range("E" & Rows.Count).End(xlUp).Row
Set rngData = .Range("C2:F" & rowLast)
arrData = rngData.Value
End With

Set dictData = CreateObject("Scripting.dictionary")
dictData.CompareMode = vbTextCompare

' Load details range into Dictionary
For i = 1 To UBound(arrData)
dictKey = arrData(i, 1)
If Not dictData.exists(dictKey) Then
dictData(dictKey) = 0
End If

If arrData(i, 3) <> "NULL" And arrData(i, 3) <> "_TRSP" Then
dictData(dictKey) = i
End If
Next i

' Update Columns E & F to Valid Values
For i = 1 To UBound(arrData)
dictKey = arrData(i, 1)
iToUse = dictData(dictKey)
If iToUse <> i And iToUse <> 0 And arrData(i, 3) = "NULL" Then
arrData(i, 3) = arrData(iToUse, 3)
arrData(i, 4) = arrData(iToUse, 4)
End If
Next i

With rngData.Resize(, 1)
.Offset(, 2).Value = Application.Index(arrData, 0, 3)
.Offset(, 3).Value = Application.Index(arrData, 0, 4)
End With
End Sub
Alex,
Thank you so much, you are a star. It works brilliantly, and I wish i could have the skills like you have. thank you
 
Upvote 0

Forum statistics

Threads
1,215,088
Messages
6,123,057
Members
449,091
Latest member
ikke

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