Hi @MM_10260548
You can try to add the export menu to the comparation menu.
just change a customActionModel.xml file . You have to find correct element to change and add a row for the export menu
just add the following rows

xml file is located in codebase\config\actions\customActionModel.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE actionmodels SYSTEM "customActionmodels.dtd">
<actionmodels>
<model name="dsvp2cPartTreeToolBar">
<action name="resetCompare" type="dsv"/>
<action name="prevDifference" type="dsb" />
<action name="nextDifference" type="dsb" />
<action name="separator" type="separator"/>
<action name="publishToCADGWT" type="cat"/>
<action name="buildCad" type="dsv"/>
<action name="buildCadAndDesc" type="dsv"/>
<action name="dsbExportHtmlGWT" type="dsb"/>
<action name="dsbExportCsvGWT" type="dsb"/>
<action name="dsbExportPdfGWT" type="dsb"/>
<action name="dsbExportTextGWT" type="dsb"/>
<action name="dsbExportXlsGWT" type="dsb"/>
<action name="dsbExportXlsxGWT" type="dsb"/>
</model>
</actionmodels>
Results




PS: it is not ideal, it can throw some errors if the wtpart does not have linked cad but it works.
PetrH