+ Reply to Thread
Results 1 to 6 of 6

Help with Loops

Hybrid View

  1. #1
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: Help with Loops

    Perhaps.
    Sub cmdFind()
    Dim ProID As Integer
    Dim unit As String
    Dim Qty As Long
    Dim I As Long
    Dim UnitCol As Variant
    Dim arrUnits()
    
        'Declare the data range
        Set myrange = Sheets("Database").Range("tblProducts")
    
        arrUnits = Array("Kilograms", "Grams", "Pounds", "Ounces Dry", "Liter", "Mils", "Each", "Ounces Liquid")
    
        For I = 1 To 10
            ProID = Me.Controls("cboIng" & I).Column(0)
            unit = Me.Controls("cboUnit" & I).Value
            Qty = Me.Controls("txtQty" & I).Value
    
            UnitCol = Application.Match(unit, arrUnits, 0)
    
            If Not IsError(UnitCol) Then
    
                Me.Controls("Cost" & I).Value = Application.VLookup(ProID, myrange, UnitCol + 15, 0) * Qty
            End If
    
        Next I
    
        For I = 1 To 10
            Me.txtCost.Value = Val(Me.txtCost.Value) + Val(Me.Controls("Cost" & I).Value)
        Next I
    
    End Sub
    Last edited by Norie; 04-18-2016 at 02:07 PM.
    If posting code please use code tags, see here.

  2. #2
    Forum Contributor
    Join Date
    04-07-2015
    Location
    Halifax, NS
    MS-Off Ver
    365
    Posts
    100

    Re: Help with Loops

    I tried both this suggestion as well as the one below suggested by nilem and both of them result in
    error 381 Could not get the column property. Invalid property array index.
    Any other suggestions? I will use the extensive simple version if I must but I hate to.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] VBA loops
    By lundy in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-14-2015, 04:06 PM
  2. VBA Loops
    By randomperson15 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-06-2010, 12:40 AM
  3. for loops
    By jenkins in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 10-06-2010, 05:21 AM
  4. Loops in VBA
    By kjones505 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-18-2009, 05:43 AM
  5. Loops
    By newbie13 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 05-07-2008, 03:43 AM
  6. For next loops
    By Kate in forum Excel General
    Replies: 5
    Last Post: 05-22-2006, 08:15 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1