Best way to do this?

dpiddy

New Member
Joined
Dec 11, 2002
Messages
41
I have a text box where the user picks a number between 2 and 12, They click a button and then a list of multiplication tables appear related to the number they choose, e.g. pick number 2 and a list of tables from 2*2 up to 2*12 appear like this:

2*2 = 4
2*3 = 6
2*4 = 8

And so on....

I was going to do it like this:

Code:
Dim array_table(2 To 12) As String
Dim var_num As Integer


array_table(2) = "2*2 = 4 2*3 = 6..."
array_table(3) = "3*2 = 6..."
 
var_num = Val(txt_tbl)
lbl_tables.Caption = array_table(var_num)

But it seems wrong; there must be a simpler way?

Thanks.
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Hi,

how about

Code:
Private Sub CommandButton1_Click()
Dim iValue As Integer
Dim I As Integer
Dim sCaption As String

iValue = Val(TextBox1.Text)
If iValue = 0 Then
    MsgBox "Invalid value"
    Exit Sub
End If

sCaption = ""
For I = 1 To 12
    sCaption = sCaption & _
                iValue & " * " & I & " = " & I * iValue & vbCrLf
Next I
Label1.Caption = sCaption
End Sub

HTH

Alan
 
Upvote 0

Forum statistics

Threads
1,215,062
Messages
6,122,925
Members
449,094
Latest member
teemeren

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