Jump to content

Change fontsize and set bold in Excel


Valnurat
 Share

Recommended Posts

Please check the wiki :)

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

I did and maybe I don't understand it.

But I have this code:

Local $oAppl = _Excel_Open(True, True, True, True, True)
If @error Then Exit MsgBox(0x41000, "ERROR", "Error creating the Excel application object." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
Sleep(500)
Local $oWorkbook = _Excel_BookNew($oAppl)
If @error Then
    MsgBox(0x41000, "ERROR", "Error creating the new workbook." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
    _Excel_Close($oAppl)
    Exit
EndIf
Sleep(500)

_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, 'Name', 'A1')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
;Sleep(500)
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, 'email', 'B1')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
;Sleep(500)
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, 'company', 'C1')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
;Sleep(500)
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, 'Organisational belonging', 'D1')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
;Sleep(500)
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, 'Country', 'E1')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
;Sleep(500)
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, 'Main Local Site', 'F1')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
;Sleep(500)
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, 'Job Title', 'G1')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
;Sleep(500)
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, 'Description', 'H1')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
;Sleep(500)
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, 'Manager', 'I1')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
;Sleep(500)
with $oWorkbook.Activesheet.range(A1:I1).font
    .select
    .bold = True
EndWith

_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, $aMail, 'A2')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
;Sleep(500)
_Excel_RangeSort($oWorkbook, $oWorkbook.Activesheet, 'A:I', 'A2', $xlAscending, $xlSortNormal, $xlYes)
If @error Then Exit MsgBox(0x41000, "ERROR", "Error sorting data." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
If WinActive('Book1 - Excel') Then Send('^a!hoi^{HOME}')

In the "With...EndWith

 

I get an syntax error

A1(): undefinded fuction

 

Yours sincerely

Kenneth.

Link to comment
Share on other sites

Try this:

#include <excel.au3>
Local $oAppl = _Excel_Open(True, True, True, True, True)
If @error Then Exit MsgBox(0x41000, "ERROR", "Error creating the Excel application object." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
Local $oWorkbook = _Excel_BookNew($oAppl)
If @error Then
    MsgBox(0x41000, "ERROR", "Error creating the new workbook." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
    _Excel_Close($oAppl)
    Exit
EndIf
Global $aHeader[1][9] = [['Name', 'email', 'company', 'Organisational belonging', 'Country', 'Main Local Site', 'Job Title', 'Description', 'Manager']]
Global $aMail[1]
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, $aheader, 'A1')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
$oWorkbook.Activesheet.range("A1:I1").font.bold = True
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, $aMail, 'A2')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
_Excel_RangeSort($oWorkbook, $oWorkbook.Activesheet, 'A:I', 'A2', $xlAscending, $xlSortNormal, $xlYes)
If @error Then Exit MsgBox(0x41000, "ERROR", "Error sorting data." & @CRLF & "@error = " & @error & ", @extended = " & @extended)

 

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

What do you try to do with this line?

If WinActive('Book1 - Excel') Then Send('^a!hoi^{HOME}')

 

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

What do you try to do with this line?

If WinActive('Book1 - Excel') Then Send('^a!hoi^{HOME}')

 

I want to set the size of the column to match the content so it is readable.

Try this:

#include <excel.au3>
Local $oAppl = _Excel_Open(True, True, True, True, True)
If @error Then Exit MsgBox(0x41000, "ERROR", "Error creating the Excel application object." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
Local $oWorkbook = _Excel_BookNew($oAppl)
If @error Then
    MsgBox(0x41000, "ERROR", "Error creating the new workbook." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
    _Excel_Close($oAppl)
    Exit
EndIf
Global $aHeader[1][9] = [['Name', 'email', 'company', 'Organisational belonging', 'Country', 'Main Local Site', 'Job Title', 'Description', 'Manager']]
Global $aMail[1]
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, $aheader, 'A1')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
$oWorkbook.Activesheet.range("A1:I1").font.bold = True
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, $aMail, 'A2')
If @error Then Exit MsgBox(0x41000, "ERROR", "Error writing to worksheet." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
_Excel_RangeSort($oWorkbook, $oWorkbook.Activesheet, 'A:I', 'A2', $xlAscending, $xlSortNormal, $xlYes)
If @error Then Exit MsgBox(0x41000, "ERROR", "Error sorting data." & @CRLF & "@error = " & @error & ", @extended = " & @extended)

 

Thank you that worked.

Yours sincerely

Kenneth.

Link to comment
Share on other sites

I want to set the size of the column to match the content so it is readable.

This code sets columns A:I to autofit.

$oWorkbook.Activesheet.Range("A:I").Columns.Autofit

 

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...