Modify ↓
Opened 10 years ago
Closed 10 years ago
#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 , 10 years ago
| Component: | AutoIt → Standard UDFs |
|---|
comment:2 by , 10 years ago
| 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.