- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello
I've attached a pipe fitting that I have been working on. The fitting is essentially an ABS Reducing Bush.
I require the shared parameter 0BV_Size to contain a description of the part's size. This is for use in both tagging and scheduling.
In order to use a lookup table successfully I have combined the two Piping : Pipe Size parameters so that Revit gives me the correct sizes.
The fitting works well and the description is what I want BUT it involves a long formula for the 0BV_Size shared parameter. Is there a way to get a string for each reducing bush size?
Here is my current formula for getting the size - which is a bit of a pain to create for all of my fittings:
if(V = 2015, "3/4x1/2", if(V = 2515, "1x1/2", if(V = 2520, "1x3/4", if(V = 3225, "1 1/4x1", if(V = 4020, "1 1/2x3/4", if(V = 4025, "1 1/2x1", if(V = 4032, "1 1/2x1 1/4", if(V = 5025, "2x1", if(V = 5032, "2x1 1/4", if(V = 5040, "2x1 1/2", if(V = 6550, "2 1/2x2", if(V = 8040, "3x1 1/2", if(V = 8050, "3x2", if(V = 8065, "3x2 1/2", if(V = 10050, "4x2", if(V = 10080, "4x3", if(V = 125100, "5x4", if(V = 150100, "6x4", if(V = 200150, "8x6", if(V = 250200, "10x8", if(V = 300250, "12x10", "NA")))))))))))))))))))))
If this fitting used a Type Catalog then Revit would allow a string for each fitting size which would work great BUT Type Catalogs don't allow the families to 'automatically size themselves with a pipe run'....
If the Lookup Table would allow a string / text to be returned then this would also work but Lookup Tables only allow numeric data to be returned (is this statement right???)
Is there an easier way to get the description and size of a fitting for tagging and scheduling?
Thanks
PS I'd better explain something: I work in metric. My ABS fittings have Imperial descriptions - we should use metric ABS really but this isn't my decision in the company that I work so apologies if this seems confusing.
Solved! Go to Solution.