Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X
Working in Creo 10 I have a note on a drawing that I need to call out a combined surface area for two separate areas on the part. With single surface areas I like to drive the note parametrically by creating a measure feature in the model and referencing it in the drawing note with "&AREA:FID_XXXXXX[.1].
Which ends up with this, which is what I want.
However, to have both surface areas in one note I have to add them manually and input them as text, non-parametric. I've been trying various takes on this: "&area:fid_xxxxx1+xxxxx2" with no luck.
Does anyone know how to combine both values into one parametric note?
Solved! Go to Solution.
You could create a parameter that will be your combined area, like "areaTotal".
Then use a relation to calculate the sum of all the areas you want.
areaTotal = AREA:FID_XXXXX1 + AREA:FID_XXXXX2
Alternatively, when you define the area measurement, pick the multiple surfaces of interest, using the <Ctrl> key. The resultant area measurement will be a total of all the surfaces selected.
You could create a parameter that will be your combined area, like "areaTotal".
Then use a relation to calculate the sum of all the areas you want.
areaTotal = AREA:FID_XXXXX1 + AREA:FID_XXXXX2
Alternatively, when you define the area measurement, pick the multiple surfaces of interest, using the <Ctrl> key. The resultant area measurement will be a total of all the surfaces selected.
I'm slightly embarrassed to say I hadn't considered creating a parameter in the model, I was so focused on doing it in the drawing but it accomplishes what I want. Thanks Ken.