I got a mayor problem based on a Framemaker bug, for which I try to build a workaround.In a document we have lots of tables that I have to split columnwise.The tables contain an attribute in the element with which they can be identified.So here's what I need:Input:\[code\]<table attributes*> <tgroup attributes* outputclass="identifier"> <colspec colnum="1" colname="1" attributes*/> <colspec colnum="2" colname="2" attributes*/> <tbody> <row attributes*> <entry colname="1">sometext</entry> <entry colname="2">moretext</entry> </row> </tbody> </tgroup></table>\[/code\]Output:\[code\]<table attributes*> <tgroup attributes* outputclass="identifier1"> <colspec colnum="1" colname="1" attributes*/> <tbody> <row attributes*> <entry colname="1">sometext</entry> </row> </tbody> </tgroup></table><table attributes*> <tgroup attributes* outputclass="identifier2"> <colspec colnum="1" colname="1" attributes*/> <tbody> <row attributes*> <entry colname="1">moretext</entry> </row> </tbody> </tgroup></table>\[/code\]I'm close to giving up, as everything I tried yet didn't work out so far