Version 2102 (Build 13801.20274) Marco Issues

John T. Jennings 1 Reputation point
2021-03-09T18:03:09.53+00:00

We are having issues with the current version of Office 365 Version 2102 (Build 13801.20274) with Legacy Marcos not working anymore.![76001-inc0030391.png][1] [1]: /api/attachments/76001-inc0030391.png?platform=QnA

0 comments No comments
{count} votes

7 answers

Sort by: Most helpful
  1. Mahyar Kamalinafar 76 Reputation points
    2021-03-09T18:11:03.73+00:00

    Hi,

    You will need to unlock the macro and show us the debug for anyone to figure out what is happening.

    0 comments No comments

  2. John T. Jennings 1 Reputation point
    2021-03-09T18:47:34.77+00:00
    Dim GrpSizeTemp As Integer
    Dim CurrTierTemp As Integer
    Dim RenTierTemp As Integer
    Dim CommTemp As Integer
    Dim MOPAdjTemp As Integer
    Dim RMMTemp As Integer
    
    Dim ActDialog As String
    Dim newTextTemp As String
    Dim NtwkSelectTemp As String
    Dim noCancel As Boolean
    
    Application.Calculation = xlCalculationAutomatic
    
    
    ActDialog = "Dialog1"
    noCancel = DialogSheets(ActDialog).Show  'shows dialog box
    
    If noCancel = False Then Exit Sub
    
    'If the user has selected a trivial MOP Adjustment Factor, this will ask the user if they're sure
    If DialogSheets(ActDialog).DropDowns("cbxMOPAdj").Value = 1 And CInt(DialogSheets("Dialog1").EditBoxes("ebxEligCT").Text) > 19 Then
        Dim Response As VbMsgBoxResult
        Response = MsgBox("You have selected a MOP Adjustment Factor of 1.000.  Are you sure this is what you want?", vbQuestion + vbYesNo)
    
        If Response = vbNo Then
            GoTo Start:
        End If
    
    The cursor is going to the 
    

    ā€‹[
    noCancel = DialogSheets(ActDialog).Show 'shows dialog box

    it's the "shows dialog box" that is causing the problem.  I just haven't had time to look into the updates to see how we need to update that section. 
    

  3. John T. Jennings 1 Reputation point
    2021-03-09T18:49:07.717+00:00

    Any help would be great
    Thank you

    0 comments No comments

  4. Mahyar Kamalinafar 76 Reputation points
    2021-03-09T19:36:50.953+00:00

    I would try to find the userform name and just do userform.show

    You can find the userform names on the project window under forms.

    0 comments No comments

  5. John T. Jennings 1 Reputation point
    2021-03-09T20:24:32.973+00:00

    I'll let them know and have them try that and see.

    Thank you