ā2022-06-14 03:21 PM
Can I write on plan the door stamp by story, for example door 1 - story1 ,2 or 3... I checked everything and didnt found the answers š
Solved! Go to Solution.
ā2022-06-15 03:30 AM
I think what you're asking is to create a new GDL.
with home_story and n = REQUEST("Home_story", "", index, story_name)
It seems possible to create a new GDL Label.
ā2022-06-15 02:28 PM
You can create property that will combine door ID and storey number or storey name:
CONCAT ( {Property:General Parameters/Element ID}; "-"; STR ( {Property:General Parameters/Home Story Number}; 0 ) )
ā2022-06-15 03:30 AM
I think what you're asking is to create a new GDL.
with home_story and n = REQUEST("Home_story", "", index, story_name)
It seems possible to create a new GDL Label.
ā2022-06-15 12:41 PM
thanks, it helps me to understand what i have to do, but also it takes many time to custume label for door or is there any other whay to do it inside door stamp marker from classification and properties ? see attached photo
ā2022-06-15 01:43 PM
I don't use it.
However, I study what I need and use it after modifying it.
And I've never tried to put a level into a door or window. Because it is fully expressed in the schedule.
ā2022-06-15 02:28 PM
You can create property that will combine door ID and storey number or storey name:
CONCAT ( {Property:General Parameters/Element ID}; "-"; STR ( {Property:General Parameters/Home Story Number}; 0 ) )
ā2022-06-16 08:53 AM
Thanks it works now, I needed this numbers on plans in door ID and according them are all door shchedules.
ā2022-06-16 09:34 AM
ā
ā2022-06-16 12:24 PM
Congratulations on finding the answer. ^^
ā2022-06-16 02:06 PM
thanks, CONCAT ( SPLIT ( STR ( {Property:General Parameters/Home Story Number} ), ".", 1 ), "/", STR ( {Property:General Parameters/Element ID} ) ) this is exact answer what i was looking for š