• 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
    • Password Reset
  • Blog
  • Excel Webinars
  • Excel Forum
    • Register as Forum Member

Code should input text for each line but Does this only once.. |VBA & Macros|Excel Forum|My Online Training Hub

You are here: Home / Code should input text for each line but Does this only once.. |VBA & Macros|Excel Forum|My Online Training Hub
Avatar
sp_LogInOut Log In sp_Registration Register
sp_Search Search
Advanced Search|Last Search Results
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 & MacrosCode should input text for each lin…
sp_PrintTopic sp_TopicIcon
Code should input text for each line but Does this only once..
Avatar
Leslie Smith
Member
Members
Level 0
Forum Posts: 9
Member Since:
August 8, 2020
sp_UserOfflineSmall Offline
1
August 20, 2020 - 1:18 am
sp_Permalink sp_Print

I have a Macro that reads times entered on an excel sheet and opens another application that inputs delay time(downtime). After the downtime has been entered, the macro should enter done on  each line after completing the loop.. Not sure why this is not happening

This is the code that should write to the excel sheet to say done. 

Cells(xlrow, 6) = DONE

Here is the entire code and I have attached the excel sheet as well. 

 

Sub DT_ACMAA()
'
' DT_ACMAA Macro
'

Dim bzhao As Object
Set bzhao = CreateObject("BZWhll.WhllObj")
bzhao.Connect ""

Dim myAsgn As Variant
Dim myRange As Excel.Range
Dim xlrow As Integer

DONE = "YES"

xlrow = 2

Set myRange = ActiveSheet.Range("B2:B52")

myAuth = Cells(xlrow, 5)
Delay_Code = Cells(xlrow, 3)
Delay_timeM = Cells(xlrow, 4)

 

For Each myAsgn In myRange
If myAsgn = "" Then
Exit For
End If

bzhao.sendkey "<PF3>"
bzhao.Wait 0.2
bzhao.sendkey "ACMAA"
bzhao.Wait 0.2
bzhao.sendkey "<enter>"
bzhao.Wait 0.2
bzhao.sendkey myAuth
bzhao.Wait 0.2
bzhao.sendkey "<TAB>"
bzhao.Wait 0.2
bzhao.sendkey "d"
bzhao.Wait 0.2
bzhao.sendkey "<tab>"
bzhao.Wait 0.2
bzhao.sendkey Delay_Code
bzhao.Wait 0.2
bzhao.sendkey myAsgn
bzhao.Wait 0.2
bzhao.sendkey "<tab>"
bzhao.Wait 0.2
bzhao.sendkey Delay_timeM
bzhao.Wait 0.2
bzhao.sendkey ":"
bzhao.Wait 0.2
bzhao.sendkey "0"
bzhao.Wait 0.2
bzhao.sendkey "0"
bzhao.Wait 0.2
bzhao.sendkey "<ENTER>"
bzhao.Wait 0.2
bzhao.sendkey "m"
bzhao.Wait 0.2
bzhao.sendkey "y"
bzhao.Wait 0.2
bzhao.sendkey "<ENTER>"
bzhao.Wait 0.2
bzhao.sendkey "e"
bzhao.Wait 0.2
bzhao.sendkey "e"
bzhao.Wait 0.2
Cells(xlrow, 6) = DONE

Next myAsgn

 

End Sub

sp_AnswersTopicSeeAnswer See Answer
Avatar
Catalin Bombea
Iasi, Romania
Admin
Level 10
Forum Posts: 1810
Member Since:
November 8, 2013
sp_UserOfflineSmall Offline
2
August 21, 2020 - 4:10 pm
sp_Permalink sp_Print

Hi Leslie,

You start with xlrow=2, but inside the loop you are not increasing the row index, so it will always remain 2.

Before next MyAssgn, use xlrow=xlrow+1

sp_AnswersTopicAnswer
Answers Post
Avatar
Leslie Smith
Member
Members
Level 0
Forum Posts: 9
Member Since:
August 8, 2020
sp_UserOfflineSmall Offline
3
August 22, 2020 - 12:53 am
sp_Permalink sp_Print

Hi Catalin!!

 

Thank you so much!! I always seem to forget about incrementing from my starting point! 

sp_Feed
Go to top
Forum Timezone: Australia/Brisbane
Most Users Ever Online: 245
Currently Online: Kim Knox, Nada Perovic, techno tux, Othman AL MUTAIRI
Guest(s) 10
Currently Browsing this Page:
1 Guest(s)
Top Posters:
SunnyKow: 1432
Anders Sehlstedt: 871
Purfleet: 412
Frans Visser: 346
David_Ng: 306
lea cohen: 219
Jessica Stewart: 205
A.Maurizio: 202
Aye Mu: 201
jaryszek: 183
Newest Members:
Othman AL MUTAIRI
Misael Gutierrez Sr.
Attif Ihsan
Kieran Fee
Murat Hasanoglu
Brett Dryland
Saeed Aldousari
Bhuwan Devkota
Kathryn Patton
Maria Conatser
Forum Stats:
Groups: 3
Forums: 24
Topics: 6222
Posts: 27293

 

Member Stats:
Guest Posters: 49
Members: 31916
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.