Code is not picking the data from the Source table

Suavesav

New Member
Joined
Mar 14, 2023
Messages
7
Office Version
  1. 2016
Platform
  1. Windows
This is the code I wrote post R&D and using Chatgpt. The code is creating blank sheets but now the file I need with the data. Please help..
VBA Code:
Sub GenerateDSR()
    Dim wsSource As Worksheet
    Dim wsReference As Worksheet
    Dim wsDest As Worksheet

    ' Set references to the source, reference, and destination sheets
    Set wsSource = ThisWorkbook.Sheets("Source")
    Set wsReference = ThisWorkbook.Sheets("Reference")

    ' Get the selected customer name from the drop-down list in cell B2
    Dim customerName As String
    customerName = wsSource.Range("B2").Value

    ' Find the customer name in the reference sheet
    Dim customerRange As Range
    Set customerRange = wsReference.Range("B1:BX1").Find(customerName, LookIn:=xlValues, LookAt:=xlWhole)

    ' Check if the customer name is found
    If customerRange Is Nothing Then
        MsgBox "Customer name '" & customerName & "' not found in the reference sheet.", vbExclamation
        Exit Sub
    End If

    ' Determine the column number of the customer name in the reference sheet
    Dim customerCol As Long
    customerCol = customerRange.Column

    ' Get the headers for the current customer from the reference sheet
    Dim headerRange As Range
    Set headerRange = wsReference.Range(wsReference.Cells(2, customerCol), wsReference.Cells(wsReference.Rows.Count, customerCol).End(xlUp))

    ' Create a new destination sheet for the customer report
    Set wsDest = ThisWorkbook.Sheets.Add(After:=ThisWorkbook.Sheets(ThisWorkbook.Sheets.Count))
    wsDest.Name = Left(customerName, 31) & " DSR"

    ' Copy the headers to the destination sheet
    headerRange.Copy wsDest.Cells(1, 1)

    ' Find the last row in the source sheet
    Dim lastRow As Long
    lastRow = wsSource.Cells(wsSource.Rows.Count, 1).End(xlUp).Row

    ' Loop through the source data and copy relevant columns to the destination sheet
    Dim srcRow As Long
    Dim destRow As Long
    destRow = 2 ' Start copying from the second row in the destination sheet
    For srcRow = 4 To lastRow ' Start from the fourth row in the source sheet
        If wsSource.Cells(srcRow, 6).Value = customerName Then ' Check if the customer name matches
            Dim destColumn As Long
            destColumn = 1
            For Each headerCell In headerRange
                Dim headerRow As Range
                Set headerRow = wsSource.Rows(3).Find(headerCell.Value, LookIn:=xlValues, LookAt:=xlWhole)
                If Not headerRow Is Nothing Then
                    wsDest.Cells(destRow, destColumn).Value = wsSource.Cells(srcRow, headerRow.Column).Value
                End If
                destColumn = destColumn + 1
            Next headerCell
            destRow = destRow + 1
        End If
    Next srcRow

    ' Autofit columns in the destination sheet
    wsDest.UsedRange.Columns.AutoFit

    ' Clear the selection in the source sheet
    wsSource.Select

    MsgBox "DSR generated for customer: " & customerName, vbInformation
End Sub
 
Last edited by a moderator:

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
It shouldn't be possible for that code to create a completely blank sheet.
 
Upvote 0
There must be something in the sheet because the headerRange range is always copied to it.
 
Upvote 0

Forum statistics

Threads
1,215,092
Messages
6,123,063
Members
449,090
Latest member
fragment

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