+ Reply to Thread
Results 1 to 9 of 9

No Macro Experience - Need to run a loop (I think?!) over a set of data for multiple rows

Hybrid View

  1. #1
    Registered User
    Join Date
    10-14-2014
    Location
    Darlington, England
    MS-Off Ver
    2013
    Posts
    7

    No Macro Experience - Need to run a loop (I think?!) over a set of data for multiple rows

    Hi,

    I have a spreadsheet containing 300+ rows, each row requiring its own individual output score. Within each row there a multiple columns which have drop down values and depend on what the user inputs. This is calculated by a bit of data which I don't want to have to copy 300+ times within the spreadsheet just to give a unique output for each row. So I can do it for one row, but then the next row changes the data and I would end up with the same score for every row.

    I've never made any sort of macro so I'm a complete beginner (not even sure how you put a macro into your spreadsheet!) so apologies in advance if this is something that has been answered many times.

    I've attached my spreadsheet, data is at the right side.

    Thank you in advance.
    Attached Files Attached Files

  2. #2
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: No Macro Experience - Need to run a loop (I think?!) over a set of data for multiple r

    You could put all your logic in one big horrible formula, in L5, then copy down:
    Formula: copy to clipboard
    =((CODE(RIGHT($D5,1))-64)*VALUE(RIGHT($E5,LEN($E5)-1)))+(MIN(INT($F5/12000)+1,5)*3)+((6-MATCH($G5,$N$17:$N$21,0))*3)+(MATCH($H5,$N$23:$N$24,0)*3)+((6-MATCH($I5,$N$26:$N$30,0))*5)+(MIN(INT(($J5-1)/10)+1,5)*5)+(LOOKUP($K5,{0,41,61,81,91},{5,4,3,2,1})*5)




    Edit: hello, fellow Darlingtonite!
    let Source = #table({"Question","Thread", "User"},{{"Answered","Mark Solved", "Add Reputation"}}) in Source

    If I give you Power Query (Get & Transform Data) code, and you don't know what to do with it, then CLICK HERE

    Walking the tightrope between genius and eejit...

  3. #3
    Registered User
    Join Date
    10-14-2014
    Location
    Darlington, England
    MS-Off Ver
    2013
    Posts
    7

    Re: No Macro Experience - Need to run a loop (I think?!) over a set of data for multiple r

    Oh thank you so much you have been a massive help

    How do I mark this post as solved?

  4. #4
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: No Macro Experience - Need to run a loop (I think?!) over a set of data for multiple r

    I would make it neater, by using some UDFs:
    Function BridgeScore(DefectExtent As String, DefectSeverity As String, TrafficFlow As Long, _
                        RoadType As String, OverUnder As String, WaterproofingType As String, _
                        WaterproofingAge As Integer, StructureCondition As Single)
        Dim i As Integer, RunningTotal As Integer
    
        RunningTotal = DefectExtentScore(DefectExtent) * DefectSeverityScore(DefectSeverity)
        RunningTotal = RunningTotal + TrafficScore(TrafficFlow) * 3
        RunningTotal = RunningTotal + RoadTypeScore(RoadType) * 3
        RunningTotal = RunningTotal + OverUnderScore(OverUnder) * 3
        RunningTotal = RunningTotal + WaterproofingTypeScore(WaterproofingType) * 5
        RunningTotal = RunningTotal + WaterproofingAgeScore(WaterproofingAge) * 5
        RunningTotal = RunningTotal + StructureConditionScore(StructureCondition) * 5
        BridgeScore = RunningTotal
    End Function
    
    
    Function DefectExtentScore(DefectExtent As String)
        DefectExtentScore = Asc(Right(DefectExtent, 1)) - 64
    End Function
    
    Function DefectSeverityScore(DefectSeverity As String)
        DefectSeverityScore = WorksheetFunction.Min(CInt(Right(DefectSeverity, Len(DefectSeverity) - 1)), 4)
    End Function
    
    Function TrafficScore(TrafficFlow As Long)
        TrafficScore = WorksheetFunction.Min((TrafficFlow - 1) \ 12000 + 1, 5)
    End Function
    
    Function RoadTypeScore(RoadType As String)
        Select Case RoadType
            Case "Motorway":                    RoadTypeScore = 5
            Case "Trunk Road - Dual":           RoadTypeScore = 4
            Case "Trunk Road - Single":         RoadTypeScore = 3
            Case "County Road":                 RoadTypeScore = 2
            Case "Accommodation Bridge":        RoadTypeScore = 1
            Case Else:                          RoadTypeScore = 0
        End Select
    End Function
    
    Function OverUnderScore(OverUnder As String)
        Select Case OverUnder
            Case "Overbridge":                  OverUnderScore = 1
            Case "Underbridge":                 OverUnderScore = 2
            Case Else:                          OverUnderScore = 0
        End Select
    End Function
    
    Function WaterproofingTypeScore(WaterproofingType As String)
        Select Case WaterproofingType
            Case "None Present":                WaterproofingTypeScore = 5
            Case "Bitumen Emulsion or Unknown": WaterproofingTypeScore = 4
            Case "Mastic Asphalt":              WaterproofingTypeScore = 3
            Case "Bitumen Sheet":               WaterproofingTypeScore = 2
            Case "Sprayed/Liquid":              WaterproofingTypeScore = 1
            Case Else:                          WaterproofingTypeScore = 0
        End Select
    End Function
    
    Function WaterproofingAgeScore(WaterproofingAge As Integer)
        WaterproofingAgeScore = WorksheetFunction.Min((WaterproofingAge - 1) \ 10 + 1, 5)
    End Function
    
    Function StructureConditionScore(StructureCondition As Single)
        Select Case StructureCondition
            Case Is <= 40:  StructureConditionScore = 5
            Case 40 To 60:  StructureConditionScore = 4
            Case 60 To 80:  StructureConditionScore = 3
            Case 80 To 90:  StructureConditionScore = 2
            Case Is > 90:   StructureConditionScore = 1
            Case Else:      StructureConditionScore = 0
        End Select
    End Function

    Then in L5, you can enter:
    Formula: copy to clipboard
    =BridgeScore(D5,E5,F5,G5,H5,I5,J5,K5)

    and copy down. Much neater.
    Last edited by Olly; 10-28-2014 at 11:37 AM.

  5. #5
    Registered User
    Join Date
    10-14-2014
    Location
    Darlington, England
    MS-Off Ver
    2013
    Posts
    7

    Re: No Macro Experience - Need to run a loop (I think?!) over a set of data for multiple r

    Hi again,

    Would you possibly be able to explain your first solution a little? I'm having to change some of the values, but I'm not too sure how to do this in your solution! How do I change what the columns D and E give me as output values? Originally SE = 5, SD = 4, SC = 3, SB = 2, SA = 1. Now I need SE = 3, SD = 2, SC = 1, SA & SB = 0.

    Sorry to be a pain!
    Thank you.

  6. #6
    Registered User
    Join Date
    10-14-2014
    Location
    Darlington, England
    MS-Off Ver
    2013
    Posts
    7

    Re: No Macro Experience - Need to run a loop (I think?!) over a set of data for multiple r

    Ah I've just had a look into what the CODE function meant - I'm guessing I can't assign the same numeric value to two letters?

  7. #7
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: No Macro Experience - Need to run a loop (I think?!) over a set of data for multiple r

    Okay, the calculation for the Defect Extent score is based on the right character of the code. The score increases as the letter 'increases', so we can calculate a score from that letter. In the first version, we take the ASCII code of the right character - for example, the ASCII code for the letter "E" is 69. We wanted that to be 5, so we subtracted 64 from that code:
    Formula: copy to clipboard
    =(CODE(RIGHT($D5,1))-64)



    Now, we want E to score 3, so we could simply change the number subtracted from the ASCII code, to 66, so that E scores 3:
    Formula: copy to clipboard
    =(CODE(RIGHT($D5,1))-66)



    But now - the letter A has an ASCII code of 65, so this revised formula would return -1 for code SA. So we need to modify slightly, so that the score returned is never lower than 0:
    Formula: copy to clipboard
    =MAX((CODE(RIGHT($D5,1))-66),0)
    This is the corrected formula for the change to your Defect Extent scoring.



    The UDF version of this would then become:
    Function DefectExtentScore(DefectExtent As String)
        DefectExtentScore = WorksheetFunction.Max(Asc(Right(DefectExtent, 1)) - 66, 0)
    End Function

    An alternative approach, in the UDF, which may make it simpler for you to adjust the logic / scores, would be to explicitly state each Defect Extent value, and assign a score manually:
    Function DefectExtentScore(DefectExtent As String)
        Select Case DefectExtent
            Case "SE":  DefectExtentScore = 3
            Case "SD":  DefectExtentScore = 2
            Case "SC":  DefectExtentScore = 1
            Case "SB":  DefectExtentScore = 0
            Case "SA":  DefectExtentScore = 0
            Case Else:  DefectExtentScore = 0
        End Select
    End Function
    I hope you followed all that!! Shout if you need further help with it.
    Last edited by Olly; 10-29-2014 at 07:43 AM.

  8. #8
    Registered User
    Join Date
    10-14-2014
    Location
    Darlington, England
    MS-Off Ver
    2013
    Posts
    7

    Re: No Macro Experience - Need to run a loop (I think?!) over a set of data for multiple r

    Blimey you are a genius! Thank you

    I follow the formula version, but I'm not too sure how to use the UDF version, how do I use this within excel?

  9. #9
    Forum Expert Olly's Avatar
    Join Date
    09-10-2013
    Location
    Darlington, UK
    MS-Off Ver
    Excel 2016, 2019, 365
    Posts
    6,284

    Re: No Macro Experience - Need to run a loop (I think?!) over a set of data for multiple r

    Have a look at the attached file.

    This has all the code in a module (Module1). You can access this by pressing Alt-F11, to open the VBE (Visual Basic Editor), then doubleclick on Module1 in the project explorer pane on the left hand side. This is where you can edit the code, so if you wanted to make changes to the rules for each score type, you would do it here.

    Then in column L of the worksheet, we use the UDF (user defined function) as the formula:
    Formula: copy to clipboard
    =BridgeScore(D5,E5,F5,G5,H5,I5,J5,K5)



    The big benefit of managing complex calculations in this way, is that when the logic changes (Defect Extent value scores, for example!), you only have to change the logic in one place, then all the formulae will automatically update based on the revised logic. You don't have to manually change any of the worksheet formulae, so you eliminate the risk of forgetting to update some / making errors in the formula update. I also think laying the logic out in this manner makes it much easier to understand your complex business rules.




    (I have added some formulae to generate some random data in columns D:K, for testing. You can just ignore this.)
    Attached Files Attached Files

+ 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. VBA Macro to loop text to columns through all rows of data
    By ejb52 in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 04-18-2014, 06:16 AM
  2. Macro to loop through and fetch data from multiple websites
    By wishkey in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-20-2013, 05:37 AM
  3. Loop macro for multiple separate graphs from rows of a large data set
    By GlennToms in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-30-2012, 02:12 PM
  4. [SOLVED] Macro to create multiple sheet, copy certain values and loop until end of row data
    By jhoelski in forum Excel Programming / VBA / Macros
    Replies: 18
    Last Post: 02-17-2012, 07:35 AM
  5. loop or macro to retrieve rows of data from other worksheet
    By beatrice25 in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 12-17-2008, 12:11 PM

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