AutoCAD Inventor :: Set Decimal Place For Columns
Jul 18, 2012
Is there a way to set the decimal place for the columns in Autodesk Inventor 2011? I have a length column I am trying to use for the p/n but I need it to be 2 places and they show up from zero to 4 dec places. I have set it inside excel but it never retains the setting.
View 9 Replies
ADVERTISEMENT
Nov 18, 2011
I have a piece of steel from the content centre 165mm long. The balloon (stacked format) quantity reads 165.000mm. I've had to format the parts list to get rid of the decimal places but I can't find a way of getting rid of them in the balloon. Any format setting somewhere?
View 4 Replies
View Related
Jul 10, 2013
This happens every time I save as to dwg, it's very annoying.
View 3 Replies
View Related
Jun 12, 2012
I'm modelling columns in-place. I have given the first one a Type Mark name but when i copy it the Type Name does not copy with it and the count in my schedule remains at 1.
Due to the shape of the member i had to model it as an in-place family.
View 1 Replies
View Related
May 3, 2012
When I save to acad my Dia dimensions are changing to a 4 place decimal. My radius dims stay the same.
INV 2009 SP 2.
View 1 Replies
View Related
Nov 14, 2011
Is there a way that i can Double Dimensioning? as to have one dimension in decimal and one in fraction all in the same dimension line?
Im using 2011 RS
View 1 Replies
View Related
Jul 27, 2012
Is there a way to get columns in form? I would like to put
Hole F Type { List the types} Hole F Location {input box}
Hole N Type { List the types} Hole N Location {input box}
Hole G Type { List the types} Hole G Location {input box}
If not this form will be off the monitor.
View 9 Replies
View Related
Dec 2, 2011
How to change the G_L parameter from decimal to fraction (1/16)? I've attached some screenshots.
View 9 Replies
View Related
Aug 8, 2012
I found out that if you have a dimension that is keyed you cannot use the custom property format in the fx. so how do I get ilogic to convert to fractions rounded to a 32nd.
When I put this (see below) in my code it changes my custom iproperty to a yes-no
fractionString = RoundToFraction(Dim_F, 1/32, RoundingMethod.Round)
Here is my code that drives my table in a drawing but the dimensions come as decimal and I need fractions.
If Hole_F_Type = "NONE" TheniProperties.Value("Custom", "F")= "-"ElseIf Hole_F_Type = "2-Hole" TheniProperties.Value("Custom", "F")= Parameter("Dim_F")ElseIf Hole_F_Type = "S1" TheniProperties.Value("Custom", "F")= "S1"& "-" & Parameter("Dim_F")ElseIf Hole_F_Type = "S2" TheniProperties.Value("Custom", "F")= "S2"& "-" & Parameter("Dim_F")ElseIf Hole_F_Type = "S3" TheniProperties.Value("Custom", "F")= "S3"& "-" & Parameter("Dim_F")End If
View 1 Replies
View Related
Sep 21, 2011
I have had a problem with retrieved dimensions decimal precision. I set the precision to 1 decimal place in the ipt but when I retrive the dimension it set the precision to 3 decimal places. I then go to the precision control in the drawing and change it to 1 decimal place.
If I then go back to the ipt and edit the dim, the drawing precision then jumps back to 3 decimal places. (This is particular to the decimal precision for the tolerance of a dimension). How to sort this out?
View 1 Replies
View Related
Aug 31, 2011
How do change the decimal separator from point to comma(in model and FX-parameter)
View 1 Replies
View Related
Dec 28, 2011
At our plant we try to place all the parts for an assembly on one drawing. i am now working on an assembly with most of the components being fabricated in the shop and using fractional dimensions. However there are a couple of parts that will be machined and should be dimensioned with decimals. When I select a dimension and attempt to alter it it changes the dimension style of the entire drawing. Is there a method of changing only the desired dimensions and not all of them? I could use dual dimensioning and maybe hide the undesired set but I don't know if that would work either.
View 3 Replies
View Related
Feb 28, 2013
I'm doing a revision rearrangement and would like to add to the BOM New, Existing, and Relocated properties. The problem is that each individual component may be unique. Ie. I have a desk w/ 3 identical monitors. One monitor is existing and the others are new. I'd like to have the BOM show that I have 3 monitors, 2 are new and 1 is existing. The BOM would have 4 columns, one for the total number of parts and 3 for the New, Existing, and Relocated counts.
I don't mind if the new columns need to be manually updated.
View 9 Replies
View Related
May 14, 2012
I did, a couple of months ago, a part with a rule containing some input boxes. It worked without a bug and set it as a specific template, on Inventor 2012.
I tried to reuse it as a template without changing its rule on Inventor 2013. When the input box pops out and ask the value it needs, if I type "0.2" it says that "string's conversion "0.2" in a 'double' type isn't valid". But if I type "0,2" I have absolutely no problems.
Work on widows 7
Autodesk design suite premium 2013 french.
View 7 Replies
View Related
Dec 9, 2011
Way to round decimal dimension values to the nearest 1/16"? For instance, 43.0599 would display as 43.0625 (On a drawing). Tried playing with tolerances, but thought it would be better addressed as customization.
View 7 Replies
View Related
Dec 11, 2013
I have a short macro to add the compliment angle to all the bend angles on an Inventor 2014 drawing. I want it to always show one decimal point on the compliment angle, but if that would be '0' then it doesn't show it. I.e. in the attached picture I want it to be 58.0 (122.0) DOWN.
Sub Test()
Dim oDoc As DrawingDocument
Set oDoc = ThisApplication.ActiveDocument
Dim oView As DrawingView
Set oView = oDoc.ActiveSheet.DrawingViews(1)
Dim oNewDimStyle As DimensionStyle
Set oNewDimStyle = oDoc.StylesManager.DimensionStyles.Item("RASOR")
[code]....
View 6 Replies
View Related
Sep 5, 2012
Why does the Round() function require that the number of decimal places be either a number or an object if you want to use a variable? It seems that a Single should work here, but iLogic won't accept it.
See sample code below which is rounding off dimension values. If I dim the variable "somenumber" as Single or Double, I get this error message from the Round() function: "Overload resolution failed because no accessible 'Round' can be called without a narrowing conversion."
When I dim "somenumber" as an object it works, but this seems unnecessary when all it is storing is a single digit number. Why wouldn't Single or Double work for this variable?
Here's the code snippet:
'Dim Current Sketch & Count Constraints
Dim oSketch As Sketch = ThisApplication.ActiveEditObject
Dim oDimCount As Single = oSketch.DimensionConstraints.Count
[Code]....
View 3 Replies
View Related
Nov 2, 2011
Is there any way that values in BOM columns would automatically change depending on the characteristics of the part?
Example:
I have a parametric metal rod that depending on its length has a different part number assigned to it in our company's catalog.
When I change its length in parametric assembly (50" rod is has different number than 70" rod) I want the part number to change as well in the "part number" column.
View 5 Replies
View Related
Aug 31, 2012
I got this routine off the In The Trenches blog and am trying to change it, some. For some reason when I export I can only get 4 columns to export. So what the heck am I missing here? The Part List I am using has all the colums I am trying to export on it.
'-------------Start Of ilogic ------------------------------------------------
'get the path and name of the drawing file
path_and_name=ThisDoc.PathAndFileName(False)' without extension
'define oDoc
oDoc=ThisDoc.Document
[Code] ....
Inventor Pro 2013 (PDS Ultimate)
Vault Pro 2013
Windows 7 64
Xeon 2.4 Ghz 12GB
View 2 Replies
View Related
Jul 16, 2012
Is there is any way to re-arrange the columns in my ipart table without having to delete all of my parameters and then adding them back in the order that I want them to appear in? I would like certain information grouped together instead of having to scroll back and forth across the row to edit certain parameters.
View 5 Replies
View Related
Aug 9, 2011
Large Assembly / Inventor 2008
I have a layout drawing, and I want to add a parts list, but I want to break it into 2 "columns" rather then a long one
how do I do that?
View 9 Replies
View Related
Nov 28, 2012
I would like to be able to export the description column of a BOM to an excel file, and exclude all the other data. I can't see any reference to doing this in the API. We have almost 20 columns so deleting them once the file is made is a bit of a pain.
View 3 Replies
View Related
Jan 30, 2013
I have an iPart with 10 key columns that I published to the Content Center. During the publishing process I can only select 9 of those key columns and I can't add a 10th. I need to get that 10th one in there. why there is a limit or how to get aroud it?
View 1 Replies
View Related
Nov 4, 2011
I noticed on my parts list that I had an item that was listed as *Varies* in the description, and part # columns I have set. Seen it before, so I went to my BOM and saw that it's a part that I've published to the CC.
Thought, OK, go and replace the 12 parts that I needed to. Tried the "Replace All" and it still came up on my BOM as *Varies*.
Went through and replaced each part in the assembly one at a time. Still shows up in BOM as *Varies*.
I thought that when I publish parts to the CC, they become Read-Only, and I can't edit any of the iProperties or the part itself.
In the attached BMP, I've cut out the offending row in my BOM. All the columns are greyed out to where I can't edit anything, as designed...
Why would these published parts come up as *Varies* in 2 of my columns if the values I've set when I published them would never change??
IV 2010 Tube & Pipe SP4; ACAD Mechanical 2010;
2.5 ghz Xeon Processor
8 gb RAM
Windows 7 Professional x64
EVGA GTX 560 2gb DDR5
View 2 Replies
View Related
Jul 14, 2012
I'm using ilogic to automatically build standardized descriptions that are linked to a field in our PDM system for future searches. The problem is that the variable "Length" (shown below) can sometimes be a whole number so it drops the trailing zeros and I want it to always be a two decimal value.
Formula:
iProperties.Value("Custom", "2ND_SUBTITLE")=CStr(ID)+" ID x "+CStr(OD)+" OD "+CStr(Round(Length, 2))+" LG"
Computed String Value
2.701 ID x 3.253 OD x 8 LG
View 1 Replies
View Related
Jun 14, 2006
Way to round decimal dimension values to the nearest 1/16"? For instance, 43.0599 would display as 43.0625 (On a drawing). Tried playing with tolerances, but thought it would be better addressed as customization.
View 2 Replies
View Related
Sep 13, 2013
I have a couple of strange angles and moving parts going on in an assembly. there is 1 constraint i am happy for inventor to predict the offset for. the problem is I am using other constraints i later want to bin, to pin it in position then try to apply this constraint. it looks like the predict offset tick box only measures to 3 dp, so as soon as i apply this constraint my model goes sick. I have to take a measurment and copy and place the measurment with all dp's into the constraint to make it work.
Is there a setting to specify the predict offset number of decimal places?
View 4 Replies
View Related
Jun 5, 2012
How about setting parameters so these four columns show in a boom: Width ft., Width in., Length ft., Length in. Also, how about getting the bom to show surface square footage for coating purposes?
View 3 Replies
View Related
May 18, 2012
I am not a regular user of the Inventor General Table. I can make and edit the table with no problems. I want to eliminate the lines from one of the columns while leaving the lines in the remaining columns. I tried to set up the column before inserting it but could not find the column format that would allow me to do that in the Style Editor.
How to do this. I need to also remove the (read only) from the Style Editor.
View 7 Replies
View Related
Nov 8, 2011
I have a situation where I need to add additional columns to a parts list.
These columns will not be a standard inventor column option, I need to put a specific number for reference in that column.
I start by double clicking on the parts list to bring up the editing option. Then I click on "Column Chooser" where I can personalize the parts list.
There is an option to add a "blank" column, which is great, but I need to add more than one.
Every time i add the "blank" column it disappears from the "Available Properties" it goes to the "Selected Properties" side and then when I click on "New Property" to add another "blank" column, it wont let me.
When trying to add the new property I am pressing the "space bar" key in order to leave it blank, but it just wont show as an "add" option in the "aAvailable Properties" section.
The reason I am not typing in the specific numbers is because I want them to be vertical and not horizontal - this saves me space on the drawing.
I've done this before, yet I cannot duplicate what I've done in the past and it's driving me insane.
how I can add multiple "blank" columns.
View 2 Replies
View Related
Apr 5, 2013
e.g. 25,00mm instead of 25.00mm.
I have a huge list of drawings I need to apply this update to. Updating Styles isn't really an option as we haven't enough consistency in the styles we have used.
Inventor 2013 Certified Professional
Autodesk Inventor Professional 2011
Windows 7 Enterprise, 64-bit
View 3 Replies
View Related