Modify ↓
Opened on Nov 2, 2015 at 12:48:24 PM
Closed on Nov 8, 2015 at 3:46:42 AM
#3155 closed Bug (No Bug)
_Excel_RangeWrite with $bForceFunc=True doesn't transpose array
| Reported by: | Owned by: | ||
|---|---|---|---|
| Milestone: | Component: | Standard UDFs | |
| Version: | 3.3.14.2 | Severity: | None |
| Keywords: | Cc: |
Description
Setting the $bForceFunc parameter to True doesn't transpose an array on the Excel sheet. See the help example 1 (_Excel_RangeWrite.au3): changing bForceFunc=True doesn't change:
_Excel_RangeWrite($oWorkbook, $oWorkbook.Activesheet, $aArray1D, "A3",True, True)
Attachments (0)
Change History (2)
comment:1 by , on Nov 7, 2015 at 8:45:07 AM
| Component: | AutoIt → Standard UDFs |
|---|
comment:2 by , on Nov 8, 2015 at 3:46:42 AM
| Resolution: | → No Bug |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

What are you expecting it to do with that set to true?
It's only used to tell the UDF to use the _ArrayTranspose function instead of the Excel $oExcel.Transpose function. Furthermore, it's not going to change the output to Excel by setting it true or false. Regardless of the setting, the array is being transposed, it just uses different methods to do that according to the setting.
Not a bug, but a misunderstanding of the function.