Thanks a lot, Neil!
This is one of the formulas I used in iCenter. This is for the iProp called ROUGH_LENGTH.
Code:
Round(IIf(StrComp(PropValue("DESC"), "Ply") = 0, (Param("FinishedLength") / 2.54), (IIf(StrComp(PropValue("Category"), "OUT") = 0, (Param("FinishedLength") / 2.54),IIf(Param("FinishedLength") / 2.54 <= 23.0, 23.0, (Param("FinishedLength") / 2.54 + 1.0))))), 5)
Basically, If the iProp DESC = "Ply" then ROUGH_LENGTH = FinishedLength (FinishedLength is an iProp populated from a sketch parameter)
If the iProp Category = "OUT" then ROUGH_LENGTH = FinishedLength
If the iProp FinishedLength is <= 23 then ROUGH_LENGTH = 23
If not, ROUGH_LENGTH = the value of FinishedLength + 1 (Rounded to 5 decimal places)
Out of 22 iProps in each part I manually entered two of them and entered five via dropdowns, which is why I grew so reliant on iCenter. I'll download the IPW2009 trial and take a look since I'm stuck with IV2009 right now.
Thanks again, Neil