diff --git a/process/Organisation_lib/process.js b/process/Organisation_lib/process.js
index 187622e897dd0c1a9271d213cd8df7ceed12a065..a8e5c8facfc16d7c0b41a7600e4c3f049b878d6a 100644
--- a/process/Organisation_lib/process.js
+++ b/process/Organisation_lib/process.js
@@ -149,6 +149,10 @@ OrgUtils.openOrgReport = function(pOrgId)
                     .where("CONTACT.ORGANISATION_ID", pOrgId)  //= all activities linked to the organization or an employee
                     .orderBy("ENTRYDATE desc")
                     .table();
+                    
+    var infoAsHtml = histData[0][4];
+    var infoWithoutHtml = text.html2text(infoAsHtml);
+    histData[0][4] = infoWithoutHtml;
     
     var dateFormat = translate.text("dd.MM.yyyy");
     histData.forEach(function (row)