Guest User

Untitled

a guest
Feb 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub Main()
  2.  cislo = ActiveCell
  3.  For i = 1 To 10
  4.  Cells(i, 1) = i
  5.  Cells(i, 2) = "x"
  6.  Cells(i, 3) = cislo
  7.  Cells(i, 4) = "="
  8.  Cells(i, 5) = i * cislo
  9.  Cells(i, 6) = i & "x" & cislo & "=" & i * cislo
  10.  
  11.  Next i
  12.  
  13. End Sub
Add Comment
Please, Sign In to add comment