Door & Window Schedule Labels ?


ACADuser
 Share

Recommended Posts

So when we are late in the project & the client wants to add windows I do not want to reorder the schedule.

It would be great is we could have W14 and new W14a or W14.1 so the windows call outs don't  change down stream of W14.

 

This causes confusion for any take offs done by the GC or window supplier.

 

Any way to deal with this?

 

Link to comment
Share on other sites

Simple text macro placed into an Object Information Field.  Using the #String.split method along with the #Array[] method for example you could just use %room_name.split("/")[0]%:

 

room_name = "Dining/Balcony 201"
room_name.split("/")[0]
#=>  "Dining"

...assumes you don't use the forward slash in your room names though.  If you do, the macro would need to be a little more complex.

 

 

  • Upvote 1
Link to comment
Share on other sites

29 minutes ago, ACADuser said:

So for the macro to be used as Room Name it will need a custom Field or repurpose an existing field.

Just wanted to be clear here.

 

 

It doesn't matter.  Functionally speaking they're pretty much the exact same thing.  Main difference is really just that you can give your own Custom Fields a more appropriate name. 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share