• Print Worksheets (VBA Excel)

    Author
    Topic
    #379200

    I want to be able to select the worksheets to print. The attached program works with the exception that it always prints the last worksheet even if it hasn’t been checked. Can anyone help? confused

    Viewing 2 reply threads
    Author
    Replies
    • #630595

      Here is a text file of the above code.

    • #630597

      I’ve rearranged a couple of lines of your code and those lines which I don’t think are necessary I’ve memoed out.
      It appears to work now. See attachment.

      Rob

      • #630599

        Hi Rob,

        I tried your changes and found that only sheet 3 will print regardless of what is checked.

        Mary

    • #630601

      Mary,

      The problem is with this chunk of code towards the bottom.

          PrintDlg.Buttons("Button 2").BringToFront
          PrintDlg.Buttons("Button 3").BringToFront
          CurrentSheet.Activate
          If SheetCount  0 Then
              If PrintDlg.Show Then

      Using CurrentSheet.Activate activates seelcts the last sheet all the time.

      So if you comment out that line:

          PrintDlg.Buttons("Button 2").BringToFront
          PrintDlg.Buttons("Button 3").BringToFront
          'CurrentSheet.Activate
          If SheetCount  0 Then
              If PrintDlg.Show Then

      The it should work as expected. If you want me to post the whole routine, just let me know.

      • #630603

        Bryon

        Almost but not quite.

        It is now printing the checkbox window first then the selected sheet.

        Mary

        • #630609

          Quite right you are. I guess I need to do better checking before I post replies grin

          The problem is that when you do the CurrentSheet.Activate, you are selecting the last sheet.

          Then when you loop through the checkboxes on the form, you are adding to the selection, which includes the last sheet. So what you have to do, is replace the current selection when you select the worksheet that is checked, and just add to it when you get to the rest. TO do that you will need to add a boolean flag to indicate if you have selected one yet. Add:

          Dim bolFirstOne As Boolean

          at the top and then replace:

          If cb.Value = xlOn Then
              Worksheets(cb.Caption).Select Replace:=False
          End If

          with:

          If cb.Value = xlOn Then
            'Check to see if we have selected atleast one sheet yet
            If bolFirstOne = False Then
              'No, not yet
              ' Replace the current seelction
              Worksheets(cb.Caption).Select Replace:=True
              'Set the flag to indicate now we have set the first one
              bolFirstOne = True
            Else
              'Now that we have selected the first one, just add to the selection
              Worksheets(cb.Caption).Select Replace:=False
            End If
          End If

          You can leave the CurrentSheet.Activate line there, or you can comment it out. It doesn’t matter. I tested it with it uncommented. And yes I did some more testing before posting this grin

    Viewing 2 reply threads
    Reply To: Print Worksheets (VBA Excel)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: