cpanetta01
New Member
- Joined
- Mar 5, 2018
- Messages
- 3
Thank you in advance
I need to rite code such that when the button is pressed the next integer is appended to the end of thetable and its square (n^2) and root (SQR) are calculated and displayed in the table.
here is what it should look like https://gyazo.com/79ad9088bdf3893edc4fa0165df1c2b5
This is the code i have so far
Columns("B:C").ColumnWidth = 22
range("a1").Value = "Number"
range("b1").Value = "Square of the Number"
range("c1").Value = "Square root of the Number"
range("a2:c2").Value = 1
I need to use "Range("...").End(...).activate and Range("...").Offset(...).<wbr style="white-space: pre-wrap;">Activate" but i have no idea how to implement them.
Thank you,
I need to rite code such that when the button is pressed the next integer is appended to the end of thetable and its square (n^2) and root (SQR) are calculated and displayed in the table.
here is what it should look like https://gyazo.com/79ad9088bdf3893edc4fa0165df1c2b5
This is the code i have so far
Columns("B:C").ColumnWidth = 22
range("a1").Value = "Number"
range("b1").Value = "Square of the Number"
range("c1").Value = "Square root of the Number"
range("a2:c2").Value = 1
I need to use "Range("...").End(...).activate and Range("...").Offset(...).<wbr style="white-space: pre-wrap;">Activate" but i have no idea how to implement them.
Thank you,