ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Creating a simple drawing using Excel (https://www.excelbanter.com/excel-discussion-misc-queries/254281-creating-simple-drawing-using-excel.html)

T5fingersWhite

Creating a simple drawing using Excel
 
I have been creating a program that produces quantity lists for masonry walls
from the input of the dimesions of the wall. I am using Excel for the input
values. I would like to create a simplified graphical drawing of the wall
from these input values. Paint would be an ideal program but somthing
similar will do. I do not know how to change the input dimensions into a
picture which is drawn to scale. Are there any programs avalable that can do
this. The picture only needs to be simple eg. rectangles. Any info would be
greatly appreciated.

John[_22_]

Creating a simple drawing using Excel
 
Hi
Don't know if that can help you, but below are vba code to create a rectangle
or square
based on dimension you put in cell C2 and C3, that you can change to your
choice.
Dimensions for the shapes are in points: 72 points = 1 inch.
It also colours the shape but you can remove that by deleting the line or change
the number ex; 41 light turquoise to something else.
----------------------
Sub Make_Rectangles()
Height_size = Range("c2").Value
Width_size = Range("c3").Value
ActiveSheet.Shapes.AddShape(msoShapeRectangle, 0, 0#, Width_size,
Height_size).Select
Selection.ShapeRange.Fill.ForeColor.SchemeColor = 41
End Sub
----------------------
HTH
John
"T5fingersWhite" wrote in message
...
I have been creating a program that produces quantity lists for masonry walls
from the input of the dimesions of the wall. I am using Excel for the input
values. I would like to create a simplified graphical drawing of the wall
from these input values. Paint would be an ideal program but somthing
similar will do. I do not know how to change the input dimensions into a
picture which is drawn to scale. Are there any programs avalable that can do
this. The picture only needs to be simple eg. rectangles. Any info would be
greatly appreciated.



GILBERT

Creating a simple drawing using Excel
 
AutoCad


"T5fingersWhite" wrote:

I have been creating a program that produces quantity lists for masonry walls
from the input of the dimesions of the wall. I am using Excel for the input
values. I would like to create a simplified graphical drawing of the wall
from these input values. Paint would be an ideal program but somthing
similar will do. I do not know how to change the input dimensions into a
picture which is drawn to scale. Are there any programs avalable that can do
this. The picture only needs to be simple eg. rectangles. Any info would be
greatly appreciated.



All times are GMT +1. The time now is 09:47 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com