Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Bold IN Excel Macro

HI All

Can some one tell me what we need to do to get Bold Text for all the headers and Bold text at the Total that is end row .

Iam using below  macro to export to excel

'sub Expot-Excel

'Dim CLApp, XLDoc,XLSheet

' set XLApp = CreateObject("Excel.Application") ' Define Object

' XLApp.Visible = True 'Visible set as true

' set XLDoc = XLApp.Workbooks.Add 'Open new workbook

' set XLSheet = XLDoc.Worksheets.Add

' ActiveDocument.GetSheetObject("CH20").CopyTableToClipboard TRUE

' XLSheet.paste

' XLSheet.Name= "BBCR CSD"

'

'end sub

Thanks in Advance

Labels (1)
1 Reply
marcus_sommer

I think you could adapt something like this by searching for cell-values like 'Total' or defined a fix row for the header:

Changes font to bold : Range Format « Excel « VBA / Excel / Access / Word

- Marcus