Value in Textbox userform stays the same but it should be changing

ipbr21054

Well-known Member
Joined
Nov 16, 2010
Messages
5,226
Office Version
  1. 2007
Platform
  1. Windows
Hi,
I have a userform which in the various Textboxes i have the following,

Example
TextBox2 NAME "customer in question value is taken from worksheet cell A"
TextBox3 ADDRESS "customer in question value is taken from worksheet cell R"
Etc etc

The userform is records on invoices.
I have a next & previos command button which steps through invoices to view.
The above all works fine.

I added a new Texbox being TextBox9 & "customer in question taken from worksheet cell AB"

My issue is that when i select next or previous all the Textbox values change according to customer in question BUT Textbox9 shows same value.

Code on next & previous is shown below.

Rich (BB code):
Private Sub NextRecord_Click()
    Navigate Direction:=xlNext
End Sub
Private Sub PrevRecord_Click()
    Navigate Direction:=xlPrevious
End Sub

I do also have this below BUT all the other textboxes change & ive only copied what is allready there so i dont se why Textbox9 stays the same ??

Rich (BB code):
    Me.TextBox1.Value = ws.Range("Q" & Rw).Value
    Me.TextBox2.Value = ws.Range("R" & Rw).Value
    Me.TextBox3.Value = ws.Range("S" & Rw).Value
    Me.TextBox4.Value = ws.Range("T" & Rw).Value
    Me.TextBox5.Value = ws.Range("U" & Rw).Value
    Me.TextBox6.Value = ws.Range("V" & Rw).Value
    Me.TextBox7.Value = ws.Range("W" & Rw).Text
    Me.TextBox9.Value = ws.Range("AB" & Rw).Value
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.

Forum statistics

Threads
1,214,833
Messages
6,121,868
Members
449,053
Latest member
Mesh

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top