This code belove will take random cells text to Label1.Caption in Form
Now i want Lebel1.Caption will appear Cells(1,4) 5 seconds then cells(2,4) 5 seconds then cells(3,4) 5 seconds .... to the end row.
Please help me to do that, thanks in advance./.
Now i want Lebel1.Caption will appear Cells(1,4) 5 seconds then cells(2,4) 5 seconds then cells(3,4) 5 seconds .... to the end row.
Please help me to do that, thanks in advance./.
Code:
[COLOR=#141414][FONT=inherit]Private Sub Userform_Initialize()[/FONT][/COLOR]<code style="box-sizing: border-box; font-family: inherit; font-size: 1em;"> Label1.Caption = ThisWorkbook.Sheets("data").Cells(WorksheetFunction.RandBetween(1, 200), 4).Text </code>[COLOR=#141414][FONT=inherit]End Sub[/FONT][/COLOR]