First time here? Check out the Help page!
1 | initial version |
You could do it using Regex. The downside is that you might have to adapt your regex for each type of surface. For your example you could use BuildingSurface:Detailed,\r\n(.*.)\r\n(.*.floor.*.)\r\n(.*.)
in the search field and Floor:Detailed,\r\n\1\r\n\3
in the replace field. Then for a wall you could replace .*.floor.*.
by .*.wall.*.
and Floor:Detailed
by Wall:Detailed
.