I want to have an extra column that is linked to an order. I am exporting the report but it recognises the html as text. I export it as OpenDocument Spreadsheet or CSV for MSExcel but no chance.
SELECT o.order_id, oci.count_files, 
       CONCAT_WS(  '',  '<a href="http://domain.co.uk/orders/view/?id=', o.order_id,  '">', o.order_id,  '</a>' ) AS Order_Link
FROM torg.temp_orders AS o
LEFT JOIN (
    SELECT obe_order_master_id, COUNT( id ) AS count_files
    FROM kronos.customer_instalments
    GROUP BY obe_order_master_id
) AS oci ON oci.obe_order_master_id = SUBSTRING( o.order_id, 4 ) 
WHERE o.verified =  'verified'
  AND oci.count_files > 1
Is there any way that after exporting the report the link can be clickable?
 
    