• Skip to main content
  • Skip to header right navigation
  • Skip to site footer

My Online Training Hub

Learn Dashboards, Excel, Power BI, Power Query, Power Pivot

  • Courses
  • Pricing
    • Free Courses
    • Power BI Course
    • Excel Power Query Course
    • Power Pivot and DAX Course
    • Excel Dashboard Course
    • Excel PivotTable Course – Quick Start
    • Advanced Excel Formulas Course
    • Excel Expert Advanced Excel Training
    • Excel Tables Course
    • Excel, Word, Outlook
    • Financial Modelling Course
    • Excel PivotTable Course
    • Excel for Customer Service Professionals
    • Excel for Operations Management Course
    • Excel for Decision Making Under Uncertainty Course
    • Excel for Finance Course
    • Excel Analysis ToolPak Course
    • Multi-User Pricing
  • Resources
    • Free Downloads
    • Excel Functions Explained
    • Excel Formulas
    • Excel Add-ins
    • IF Function
      • Excel IF Statement Explained
      • Excel IF AND OR Functions
      • IF Formula Builder
    • Time & Dates in Excel
      • Excel Date & Time
      • Calculating Time in Excel
      • Excel Time Calculation Tricks
      • Excel Date and Time Formatting
    • Excel Keyboard Shortcuts
    • Excel Custom Number Format Guide
    • Pivot Tables Guide
    • VLOOKUP Guide
    • ALT Codes
    • Excel VBA & Macros
    • Excel User Forms
    • VBA String Functions
  • Members
    • Login
  • Blog
  • Excel Webinars
  • Excel Forum
    • Register as Forum Member

Help finishing printout VBA|VBA & Macros|Excel Forum|My Online Training Hub

You are here: Home / Help finishing printout VBA|VBA & Macros|Excel Forum|My Online Training Hub

vba course banner

Avatar
sp_LogInOut Log In sp_Registration Register
sp_Search Search
Advanced Search
Search
Forum Scope




Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
sp_Search Search
sp_RankInfo
Lost password?
sp_CrumbsHome HomeExcel ForumVBA & MacrosHelp finishing printout VBA
sp_PrintTopic sp_TopicIcon
Help finishing printout VBA
Avatar
sun well

New Member
Members
Level 0
Forum Posts: 1
Member Since:
April 18, 2022
sp_UserOfflineSmall Offline
1
April 18, 2022 - 7:17 am
sp_Permalink sp_Print sp_EditHistory

Hey guys new here 🙂

 

Look for some help finishing the code.

 

So I have 3 body(sheet) wich are called body1(2)(2) the mirror to be printed those are called tobeprintedsheet1(2)(3).

 

I made a sub to call all of those at once, the issue is it doesnt check if all 3 body meet the condition, it has to at least have one cell with "9" then will print, if it has less than 9 will end sub. 

 

How it's working right now, if I press  printall button, let assume body 1 and 2 meet the condition and 3 doesn't, it will still print body3, when call tobeprintedsheet1(2)(3).

 

Take a look to the code here:

Reveal Spoiler

Private Sub Print_Body1()

Dim vArray, vEntry, bPrint As Boolean
vArray = Array("D4", "F4", "H4", "J4", "D11", "F11", "H11", "J11")

For Each vEntry In vArray
If Range(vEntry) = 9 Then
bPrint = True
Exit For
End If
Next vEntry

Application.ScreenUpdating = False

With Sheets("sheettobeprinted31")
If bPrint Then
.Visible = True
.PrintOut Copies:=1, Collate:=True
Debug.Print "printed"
.Visible = xlSheetVeryHidden
Else
Debug.Print "printed"
End If
End With

Application.ScreenUpdating = True
End Sub
Private Sub Print_Body2()

Dim vArray, vEntry, bPrint As Boolean
vArray = Array("D4", "F4", "H4", "J4", "D11", "F11", "H11", "J11")

For Each vEntry In vArray
If Range(vEntry) = 9 Then
bPrint = True
Exit For
End If
Next vEntry

Application.ScreenUpdating = False

With Sheets("sheettobeprinted2")
If bPrint Then
.Visible = True
.PrintOut Copies:=1, Collate:=True
Debug.Print "printed"
.Visible = xlSheetVeryHidden
Else
Debug.Print "printed"
End If
End With

Application.ScreenUpdating = True

End Sub
Private Sub Print_Body3()

Dim vArray, vEntry, bPrint As Boolean
vArray = Array("D4", "F4", "H4", "J4", "D11", "F11", "H11", "J11")

For Each vEntry In vArray
If Range(vEntry) = 9 Then
bPrint = True
Exit For
End If
Next vEntry

Application.ScreenUpdating = False

With Sheets("sheettobeprinted3")
If bPrint Then
.Visible = True
.PrintOut Copies:=1, Collate:=True
Debug.Print "printed"
.Visible = xlSheetVeryHidden
Else
Debug.Print "printed"
End If
End With

Application.ScreenUpdating = True
End Sub

Private Sub printall()
Print_Body1
Print_Body2
Print_Body3
End Sub

Avatar
Jessica Stewart
Northern USA
Member
Members


Trusted Members
Level 0
Forum Posts: 216
Member Since:
February 13, 2021
sp_UserOfflineSmall Offline
2
April 19, 2022 - 12:20 am
sp_Permalink sp_Print

I think your problem is your bPrint variable and how it is currently operating. I think what you need is to do the print command inside your loop and then set bPrint back to false before moving on to the next variable in your array. As it stands now bPrint is true being changed to true and it will print everything.

My disclaimer: VBA is not my strong area in Excel so I could be misreading things, but I know that's where I'd start at least.

sp_Feed
Go to top
Forum Timezone: Australia/Brisbane
Most Users Ever Online: 245
Currently Online: Catalin Bombea, John Kobiela, Malcolm Sawyer
Guest(s) 9
Currently Browsing this Page:
1 Guest(s)
Top Posters:
SunnyKow: 1432
Anders Sehlstedt: 873
Purfleet: 414
Frans Visser: 346
David_Ng: 306
lea cohen: 222
Jessica Stewart: 216
A.Maurizio: 202
Aye Mu: 201
jaryszek: 183
Newest Members:
Melanie Ford
Isaac Felbah
Adele Glover
Hitesh Asrani
Rohan Abraham
Anthony van Riessen
Erlinda Eloriaga
Abisola Ogundele
MARTYN STERRY
Rahim Lakhani
Forum Stats:
Groups: 3
Forums: 24
Topics: 6356
Posts: 27793

 

Member Stats:
Guest Posters: 49
Members: 32324
Moderators: 3
Admins: 4
Administrators: Mynda Treacy, Philip Treacy, Catalin Bombea, FT
Moderators: MOTH Support, Velouria, Riny van Eekelen
© Simple:Press —sp_Information

Sidebar

Blog Categories

  • Excel
  • Excel Charts
  • Excel Dashboard
  • Excel Formulas
  • Excel PivotTables
  • Excel Shortcuts
  • Excel VBA
  • General Tips
  • Online Training
  • Outlook
  • Power Apps
  • Power Automate
  • Power BI
  • Power Pivot
  • Power Query
microsoft mvp logo
trustpilot excellent rating
Secured by Sucuri Badge
MyOnlineTrainingHub on YouTube Mynda Treacy on Linked In Mynda Treacy on Instagram Mynda Treacy on Twitter Mynda Treacy on Pinterest MyOnlineTrainingHub on Facebook
 

Company

  • About My Online Training Hub
  • Disclosure Statement
  • Frequently Asked Questions
  • Guarantee
  • Privacy Policy
  • Terms & Conditions
  • Testimonials
  • Become an Affiliate

Support

  • Contact
  • Forum
  • Helpdesk - For Technical Issues

Copyright © 2023 · My Online Training Hub · All Rights Reserved. Microsoft and the Microsoft Office logo are trademarks or registered trademarks of Microsoft Corporation in the United States and/or other countries. Product names, logos, brands, and other trademarks featured or referred to within this website are the property of their respective trademark holders.