I would like to conditionally set cell colors in the exported xml when using the Export to Excel button on a NT 10.19 browse.  I have set my own style in the After Set Styles embed as follows:
!!Create my own cell style
  ExcelExport.SetStyle('s999','MyCell')
  ExcelExport.SetStyleInterior('s999','#F6EFCE','Solid')
Then, in the Export To Excel Set Queue Record embed I tried the following:
 !!conditionally set exported cell with my style
        If loc:Status = 'Complete'
            ExcelExport.SetCell(rowNumber,ColumnNumber,loc:Status,'s999')
        END
This has not worked for me and I have tried a number of the other Export To Excel embeds.  Can anyone suggest a solution?  
P.S.
Ideally, I'd like an integration of SendTo in Nettalk, to export a browse to HTLM, XLS, PDF, etc., but I don't think this has been done yet.