'str1:str2' is the string 'str1:str2' - not surprising. But you want to concatenate two (three!) string variables:
str1 = 'A1';
str2 = 'B5';
Input = xlsread(filename,[str1, ':', str2]);
Such methods are explained in the Getting Started chapters of the documentation.