How would I go about creating and brick like grid pattern that I can use to design block layouts.
Thanks,
Jeff
I know this is an Excel forum. I simply would like to know how to set up the grid lines in a brick style pattern. Not sure how else to ask it.Hi Jeff, welcome to the forum.
This is a MS Excel forum, not a LEGO forum. Please put your question in a form that we can all understand.
Sub Maybe()
Dim i As Long, j As Long
For i = 1 To 26
For j = 1 To 35 Step 2
Sheets("Sheet1").Shapes.AddShape msoShapeRectangle, Columns(i).Left, Rows(j).Top, Columns(i).Width, Rows(j).Height
Sheets("Sheet1").Shapes.AddShape msoShapeRectangle, Columns(i).Left + 0.5 * Columns(i).Width, Rows(j + 1).Top, Columns(i).Width, Rows(j).Height
Next j
Next i
End Sub
I am not sure how to do this. I’m not a power user and was thinking it would just be some settings to changeChange as required
Code:Sub Maybe() Dim i As Long, j As Long For i = 1 To 26 For j = 1 To 35 Step 2 Sheets("Sheet1").Shapes.AddShape msoShapeRectangle, Columns(i).Left, Rows(j).Top, Columns(i).Width, Rows(j).Height Sheets("Sheet1").Shapes.AddShape msoShapeRectangle, Columns(i).Left + 0.5 * Columns(i).Width, Rows(j + 1).Top, Columns(i).Width, Rows(j).Height Next j Next i End Sub
Hit Alt-F11I am not sure how to do this. I’m not a power user and was thinking it would just be some settings to change
Jeff