cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 
2024 Technology Preview Program

2024 Technology Preview Program:
Master powerful new features and shape the latest BIM-enabled innovations

Documentation
About Archicad's documenting tools, views, model filtering, layouts, publishing, etc.

Property to determine if a project is a new build or reno

Josh Verran
Advisor

I have a property using an expression that looks for various text (Reno, Alteration, Addition, Remed) in the project description and returns a simple "Reno" or "New" result.
Effectively all work can fall into these two categories (you can argue that remedial work is a renovation of sorts).
This property is referenced by another expression which is used to include/exclude the renovation status as part of the prefix of elements in Keys.
For example, on a reno, it is important to indicate if an element is New, Existing or to be Demolished (eg New Timber Framing). 
On a new build, everything is new so looks odd seeing the word New before each entry (Timber Framing is sufficient).

 

Often new builds get unique wording, eg Proposed Workshop, or Proposed Warehouse etc.
So I want to alter my expression so that if a keyword is found then return "Reno", if no keyword is found then return "New".

I've tried all sorts of configurations (separate sequences etc) but all are returning "<Undefined>".

IFS ( CONTAINS ( "Alt", {Property:ProjectInfoPropertyDefinitionGroup/Project Description}, FALSE ), "Reno", CONTAINS ( "Addition", {Property:ProjectInfoPropertyDefinitionGroup/Project Description}, FALSE ), "Reno", CONTAINS ( "Change", {Property:ProjectInfoPropertyDefinitionGroup/Project Description}, FALSE ), "Reno", CONTAINS ( "Placeholder2", {Property:ProjectInfoPropertyDefinitionGroup/Project Description}, FALSE ), "Reno", CONTAINS ( "Placeholder3", {Property:ProjectInfoPropertyDefinitionGroup/Project Description}, FALSE ), "Reno", CONTAINS ( "Remed", {Property:ProjectInfoPropertyDefinitionGroup/Project Description}, FALSE ), "Reno", CONTAINS ( "Reno", {Property:ProjectInfoPropertyDefinitionGroup/Project Description}, FALSE ), "Reno", CONTAINS ( "Proposed Residence", {Property:ProjectInfoPropertyDefinitionGroup/Project Description}, FALSE ), "New", CONTAINS ( "Proposed Dwelling", {Property:ProjectInfoPropertyDefinitionGroup/Project Description}, FALSE ), "New", CONTAINS ( "New", {Property:ProjectInfoPropertyDefinitionGroup/Project Description}, FALSE ), "New" )

 


GRAPHISOFT CERTIFIED ARCHICAD BIM MANAGER | LinkedIn | My Top Wishes


ARCHICAD 18-27 | BIMcloud Basic | CI Tools | Grasshopper - Rhino | CloudCompare | Bluebeam


Perth, Australia and Tauranga, New Zealand


Windows 10 Pro | Intel Core i9-9900K @3.60GHZ | 32Gb RAM | 2xSamsung S27F350 1920x1080 60Hz | Nvidia Quadro P2200 (5Gb)



7 REPLIES 7
DGSketcher
Legend

Have you considered assigning a Classification, which could be easier to label & Manage, plus you can assign whatever names you want. It might also be easier migrating the values into the Element Properties list.

Apple iMac Intel i9 / macOS Sonoma / AC27UKI (most recent builds.. if they work)
Josh Verran
Advisor

Thanks for the suggestion I can see that being useful.
In this instance thou, the property already works quite well, just needs a little refining.

I should have included the below recording in original post.

The actual data gets shown in interactive schedules as well, but the labels and zone stamp were an easy way to demonstrate in a recording.

 


GRAPHISOFT CERTIFIED ARCHICAD BIM MANAGER | LinkedIn | My Top Wishes


ARCHICAD 18-27 | BIMcloud Basic | CI Tools | Grasshopper - Rhino | CloudCompare | Bluebeam


Perth, Australia and Tauranga, New Zealand


Windows 10 Pro | Intel Core i9-9900K @3.60GHZ | 32Gb RAM | 2xSamsung S27F350 1920x1080 60Hz | Nvidia Quadro P2200 (5Gb)



Screenshot 2023-04-26 105816.jpgScreenshot 2023-04-26 105839.jpg


GRAPHISOFT CERTIFIED ARCHICAD BIM MANAGER | LinkedIn | My Top Wishes


ARCHICAD 18-27 | BIMcloud Basic | CI Tools | Grasshopper - Rhino | CloudCompare | Bluebeam


Perth, Australia and Tauranga, New Zealand


Windows 10 Pro | Intel Core i9-9900K @3.60GHZ | 32Gb RAM | 2xSamsung S27F350 1920x1080 60Hz | Nvidia Quadro P2200 (5Gb)



Interesting. Can you share the expressions for both of the properties, please?  ( if I understood right, you have one property that searches for keywords and returns a simple status. what is the second property ?) 

thank you.

arch. ernest atanasiu
AC 10-26 INT/GER/FR on Win 10/ Win 11
Josh Verran
Advisor

Hi there

 

Check out the properties below.
One property looks in the Project Info > Project Description for some Keywords, then returns either "reno" or "new".
Another bunch of properties show how a wall note would look if the element was either new, demo or existing. We have a convention that if the wall is existing we don't include as much detail as if it were new.
There's another property that returns either the "manual description of an element", or the Complex profile name, or the composite name etc.

 

Let me know if I can clarify any of that.


GRAPHISOFT CERTIFIED ARCHICAD BIM MANAGER | LinkedIn | My Top Wishes


ARCHICAD 18-27 | BIMcloud Basic | CI Tools | Grasshopper - Rhino | CloudCompare | Bluebeam


Perth, Australia and Tauranga, New Zealand


Windows 10 Pro | Intel Core i9-9900K @3.60GHZ | 32Gb RAM | 2xSamsung S27F350 1920x1080 60Hz | Nvidia Quadro P2200 (5Gb)



That's cool, thanks for sharing.

arch. ernest atanasiu
AC 10-26 INT/GER/FR on Win 10/ Win 11
Josh Verran
Advisor

I ended up finding a simple solution.
The fix was to simply add one more IFS statement, that actually looked back at itself.

 

For example:
CONTAINS (Project DescriptionProject Description, FALSE, "Reno")

 

In other words, if the Project Description matches the Project Description (which of course it does), then simply return a certain value, in my case "Reno".
So provided none of the other keywords prompted a result of "New", then it doesn't matter what the Project Description is, just consider it to be a Reno.

 


GRAPHISOFT CERTIFIED ARCHICAD BIM MANAGER | LinkedIn | My Top Wishes


ARCHICAD 18-27 | BIMcloud Basic | CI Tools | Grasshopper - Rhino | CloudCompare | Bluebeam


Perth, Australia and Tauranga, New Zealand


Windows 10 Pro | Intel Core i9-9900K @3.60GHZ | 32Gb RAM | 2xSamsung S27F350 1920x1080 60Hz | Nvidia Quadro P2200 (5Gb)