• 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
  • Login

Need help at Userform (find row number and update the information on that row)|VBA & Macros|Excel Forum|My Online Training Hub

You are here: Home / Need help at Userform (find row number and update the information on that row)|VBA & Macros|Excel Forum|My Online Training Hub

office scripts course

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 & MacrosNeed help at Userform (find row num…
sp_PrintTopic sp_TopicIcon
Need help at Userform (find row number and update the information on that row)
Avatar
AH You

New Member
Members
Level 0
Forum Posts: 1
Member Since:
May 7, 2020
sp_UserOfflineSmall Offline
1
May 7, 2020 - 5:20 pm
sp_Permalink sp_Print

Hi guys,

i'm news to VBA.

below coding's purpose is to find a match string in a table by using a For loop.

My problem is that i always get error at this step "sh2.Range("A" & matchRow).Value = SupplierCbx.Value"

I have put some msgbox to monitor data such as "lastrow","matchrow". Result is lastrow = 16(correct), matchrow = 0 (when i run application automatically after open excel file). however, sometime, i get correct matchrow result when just run the specific userform.

'Update Data
'find match data
Dim index As Integer
Dim lastRow As Integer

Dim sh2 As Worksheet
Set sh2 = ThisWorkbook.Sheets("ItemsMasterPage")

lastRow = sh2.Range("B10000").End(xlUp).Row
For index = 2 To lastRow
If Cells(index, 2) = SupplierPartTxt.Value Then
matchRow = index
End If
Next index

sh2.Range("A" & matchRow).Value = SupplierCbx.Value
sh2.Range("B" & matchRow).Value = SupplierPartTxt.Value
sh2.Range("C" & matchRow).Value = DescriptionTxt.Value
sh2.Range("D" & matchRow).Value = UnitCbx.Value
sh2.Range("E" & matchRow).Value = CategoryCbx.Value
sh2.Range("F" & matchRow).Value = PricePerPcsTxt.Value
sh2.Range("G" & matchRow).Value = ReorderQtyTxt.Value
sh2.Range("H" & matchRow).Value = StorageCbx.Value

Msgbox "components has updated"

Avatar
SunnyKow
Puchong, Malaysia

VIP
Members


Trusted Members
Level 8
Forum Posts: 1432
Member Since:
June 25, 2016
sp_UserOfflineSmall Offline
2
May 8, 2020 - 4:06 am
sp_Permalink sp_Print

Try changing the code to:

'Update Data
'find match data
Dim index As Integer
Dim lastRow As Integer

Dim sh2 As Worksheet
Set sh2 = ThisWorkbook.Sheets("ItemsMasterPage")

lastRow = sh2.Range("B10000").End(xlUp).Row
For index = 2 To lastRow
If Cells(index, 2) = SupplierPartTxt.Value Then
matchRow = index
sh2.Range("A" & matchRow).Value = SupplierCbx.Value
sh2.Range("B" & matchRow).Value = SupplierPartTxt.Value
sh2.Range("C" & matchRow).Value = DescriptionTxt.Value
sh2.Range("D" & matchRow).Value = UnitCbx.Value
sh2.Range("E" & matchRow).Value = CategoryCbx.Value
sh2.Range("F" & matchRow).Value = PricePerPcsTxt.Value
sh2.Range("G" & matchRow).Value = ReorderQtyTxt.Value
sh2.Range("H" & matchRow).Value = StorageCbx.Value

Msgbox "components has updated"

End If
Next index

Cheers

sp_Feed
Go to top
Forum Timezone: Australia/Brisbane
Most Users Ever Online: 245
Currently Online:
Guest(s) 9
Currently Browsing this Page:
1 Guest(s)
Top Posters:
SunnyKow: 1432
Anders Sehlstedt: 880
Purfleet: 414
Frans Visser: 346
David_Ng: 306
lea cohen: 237
Jessica Stewart: 219
A.Maurizio: 213
Aye Mu: 201
jaryszek: 183
Newest Members:
Trevor Pindling
Stevan Kanjo
Erin Sheldon
Nikita Bhatia
Sheilah Taylor
Clare Webber
David Jenssen
Dominic Brosnahan
Young You
Jennifer Owens
Forum Stats:
Groups: 3
Forums: 24
Topics: 6524
Posts: 28554

 

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

Sidebar

Blog Categories

  • Excel
  • Excel Charts
  • Excel Dashboard
  • Excel Formulas
  • Excel Office Scripts
  • 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

Sign up to our newsletter and join over 400,000
others who learn Excel and Power BI with us.

 

Company

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

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.