montecarlo2012
Well-known Member
- Joined
- Jan 26, 2011
- Messages
- 985
- Office Version
- 2010
- Platform
- Windows
Hello everyone
Working on this code
Do not show me nothing plus do not show errors either.
I am trying to get:
Please
Your input matters to me
Thanks for reading this.
Working on this code
VBA Code:
Sub ppp()
N = 13
For i = N To -N
For j = N To Abs(i) Step -j
Cells(i, j) = "X"
Next j
Next i
End Sub
I am trying to get:
Please
Your input matters to me
Thanks for reading this.