Form referring to a module

Pauljj

Well-known Member
Joined
Mar 28, 2004
Messages
2,046
This is complicated to explain, so bear with me please

I have a for next loop set up as follows

Code:
For j = 2 To LastRow Step 1
  
  a = Cells(j, 53)
  
  If a = "1" Then
  
  tcsorting.Show
  
  Else
  
  Cells(j, 8) = Cells(j, 53)
  

  End If
  
  Next

If A = 1 then a form called tc sorting will display

In this form the user selects a location, this location then must be dumped on the row number......defined by J

But when it moves to the form it no longer recognises J

Code:
Private Sub CommandButton1_Click()

Dim j As Integer



Cells(j, 8) = travelcentre.Text


End Sub


Any ideas please ?

Thanks
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
How about
Code:
For j = 2 To LastRow Step 1
  
  a = Cells(j, 53)
  
  If a = "1" Then
  tcsorting.Tag=j
  tcsorting.Show
  
  Else
  
  Cells(j, 8) = Cells(j, 53)
  

  End If
  
  Next
and then
Code:
Private Sub CommandButton1_Click()





Cells(Me.Tag, 8) = travelcentre.Text


End Sub
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,251
Members
448,556
Latest member
peterhess2002

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