Swe: Letarad (?) med VBa kod

Joined
Aug 21, 2004
Messages
2
Aloha,

Jag håller på med ett litet VBAprojekt. Userform som bara har två inmatningar, har jag fått att fungera fint.

Mitt blad består av ca 600 rader med ort, leverantör, tonpriser och drivmedelstilägg. Vad jag vill göra är att när jag väljer leverantör från en combobox och fyller i drivmedelstillägget i en textbox så vill jag att programmet går igenom C kolumnen där alla leverantörer finns och sedan uppdaterar L kolumnen med det värde på drivmedelstilägget (DMT) som jag anget i textboxen.
Nu till min fråga.
Hur kan jag skriva koden så att drivmedelstillägget uppdateras på alla rader där leverantören stämer överens med den angivna leverantören i comboboxen.
Än så länge har jag bara kommit fram till att
ActiveCell.Offset(0, 9) = txtdmt.Value fungerar bra för att lägga in DMT i L kolumnen, men hur jag får programmet att göra detta på de rader där mitt combobox val stämmer överens med det värde som står i C kolumnen vet jag ej.

Går det överhuvudtaget att förstå min fråga vore jag tacksam för svar. :beerchug:
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Hej,

Förutom combobox och textbox på din userform så satte jag dit en
kommando knapp att trycka på när du fyllt i klart.

Koden för knappen kan vara ungefär:


Code:
Private Sub CommandButton1_Click()
Dim ce As Range

For Each ce In Sheet1.Range("C2", Range("C65536").End(xlUp))

If ce = ComboBox1.Value Then ce.Offset(0, 9) = TextBox1.Value

Next ce

End Sub

Hoppas du kan göra de ev anpassningar som behövs.
 
Upvote 0
Hej på Er :)

Jag hade vägarna förbi så jag skrev ihop en lite annorlunda lösning i sin helhet:

Code:
Option Explicit
Dim wbBook As Workbook
Dim wsSheet As Worksheet
Dim rnData As Range

Private Sub CommandButton1_Click()
Dim rnFind As Range
Dim stValue As String, stFind As String
Dim stAddress As String

With Me
    stValue = .TextBox1.Text
    stFind = .ComboBox1.Value
End With

With rnData
    Set rnFind = .Find(What:=stFind)
    If Not rnFind Is Nothing Then
        stAddress = rnFind.Address
        Do
            rnFind.Offset(0, 9).Value = stValue
            Set rnFind = .FindNext(rnFind)
        Loop While Not rnFind Is Nothing And rnFind.Address <> stAddress
    End If
End With

End Sub

Private Sub UserForm_Initialize()
Dim vaData As Variant
Set wbBook = ThisWorkbook

With wbBook
    Set wsSheet = .Worksheets("Blad1")
End With

With wsSheet
    Set rnData = .Range("C1:C10")
End With

vaData = rnData.Value

With Me.ComboBox1
    .Clear
    .List = vaData
    .ListIndex = -1
End With

End Sub
 
Upvote 0

Forum statistics

Threads
1,223,948
Messages
6,175,573
Members
452,652
Latest member
eduedu

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