Jump to content

Large Ranges in Excel


Go to solution Solved by thatguypursue,

Recommended Posts

I'm working on a program that generates a very large, formatted Excel file (6000+ lines) from a delimited file. To make the process quicker, I'm generating a large string of cells to be formatted...

; Example

$bstr = "A1,A4,B4,C4" ;This goes on for a while. End string is greater than 255 characters.

$oExcel.Activesheet.Range($bstr).Font.Bold = True

I've found that if $bstr is greater than 255 characters, the command fails. I've managed to create a loop that cuts the string into 255 characters pieces, then apply bold. This has cut my formatting time from 30 minutes to 60 seconds. However, I believe it would take just a few seconds if I could execute the command with a bigger string.

Is there a way to select a .Range() with a string greater than 255 characters?

Link to comment
Share on other sites

I think that's a hard coded limit (have seen this limit when transposing arrays too).

If the cells you need to format do not change then I would format an empty sheet and store it as a template. You then just need to open the template and paste the data into the pre-formatted sheet.

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

Set

$oExcel.ScreenUpdating = False

before setting the ranges and set it to True again when finished.

That should speed up your solution.

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've been playing around with Union. This code works in VBA. What would the AutoIt equivalent be?

Set RangeOne = ActiveSheet.Range("A1,A2,A3,A4")
Set RangeTwo = ActiveSheet.Range("B1,B2,B3,B4")

Set CombinedRange = Union(RangeOne, RangeTwo)

Activesheet.Union(CombinedRange).Font.Bold = True

I tried the following, but it didn't work...

Local $exc = _ExcelBookNew()

$RangeOne = $exc.ActiveSheet.Range("A1,A2,A3,A4")
$RangeTwo = $exc.ActiveSheet.Range("B1,B2,B3,B4")

$CombinedRange = $exc.ActiveSheet.Union($RangeOne, $RangeTwo)

$exc.Activesheet.Union($CombinedRange).Font.Bold = True
Link to comment
Share on other sites

Untested, because I have no Excel here:

Local $exc = _ExcelBookNew() 
$RangeOne = $exc.ActiveSheet.Range("A1:A4") 
$RangeTwo = $exc.ActiveSheet.Range("B1:B4") 
$CombinedRange = $exc.Union($RangeOne, $RangeTwo)
$CombinedRange.Font.Bold = True
Edited by water

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

  • Solution

water, you are a genius, gentleman, and a scholar. It works beautifully. Here is my final product... 

; My code searches an array ($raw) 
; for a string "[B]".
; Removes "[B]", then bolds the proper cell.

$ye = Ubound($raw,2)

For $y = 0 To $ye - 1 Step 1
   ; Search column for "[B]"
   $bfind = _ArrayFindAll($raw, "[B]", 0, 0, 1, 1, $y)
   If IsArray($bfind) Then
      $bstr = ""
      ; Convert column number to letter
      $ya = _ExcelColumnLetter($y+1)
      $btot = Ubound($bfind)
      $u = 1
      For $x = 0 To $btot-1 Step 1 
         ; Replace each "[B]" with ""
         $rep = StringReplace($raw[$bfind[$x]][$y], "[B]", "")
         $raw[$bfind[$x]][$y] = $rep
         ; If our string of cells is approaching 255,
         ; or if we've added all cells to be bolded...
         If StringLen($bstr) > 230 Or $x = $btot-1 Then
            ; Add last cell to string
            $bstr = $bstr & $ya & $bfind[$x]+1
            ; Create range from string
            $excrng = $exc.Activesheet.Range($bstr)
            If $u = 1 Then
               ; Create starter range that becomes the union
               $excun = $excrng
               $u = $u + 1
            Else
               ; Add range to union
               $excun = $exc.Union($excun, $excrng)
               $u = $u + 1
            EndIf
            $bstr = ""
         Else
            $bstr = $bstr & $ya & $bfind[$x]+1 & ","
         EndIf
      Next
      ; Bold the generated union
      $excun.Font.Bold = True
   EndIf
Next

Func _ExcelColumnLetter($iColumn = 0)
    Local $letters
    While $iColumn
        $x = Mod($iColumn, 26)
        If $x = 0 Then $x = 26
        $letters = Chr($x + 64) & $letters
        $iColumn = ($iColumn - $x) / 26
    WEnd
    Return $letters
EndFunc

The end result is one bold applied to the Excel spreadsheet. Which is much faster, (even with the added work done by AutoIt), than thousands of bold applications.

Link to comment
Share on other sites

:D

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

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...