﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
903	_ExcelReadSheetToArray doesn't work with other MSoffice language than US	rooversj@…		"When the OS language or MS Office language is other than US the function _ExcelReadSheetToArray might not work correctly. Because of the letter ""C"" in the functioncode mentioned below. For example ""Column"" in Dutch is ""Kolom"" so when I change the '''""C""''' into '''""K""''' the function magically will work on my pc (Dutch OS en Dutch MS Office) because '''""lR1C1""''' in the Dutch version of Excel is '''""lR1K1""'''. 
{{{
	; Extract integer last row and col
	Local $iLastRow = StringInStr($sLastCell, ""R"")
	Local $iLastColumn = StringInStr($sLastCell, ""C"")
	$iLastRow = Number(StringMid($sLastCell, $iLastRow + 1, $iLastColumn - $iLastRow - 1))
	$iLastColumn = Number(StringMid($sLastCell, $iLastColumn + 1))
}}}"	Bug	closed		AutoIt	3.3.0.0	None	Duplicate		
