Three problems:
1) The sample data provided is NOT csv. csv stands for comma separated variable. Your sample data appears to be separated by tabs or whitespace. UPDATE: I see you've edited your sample so that the data is now csv. I've edited my solution accordingly.
2) If you wish to use the row and column input arguments to csvread they should be input as zero-based integer valued row and column arguments, not an "excel" type string.
3) From the sample you provide, it appears that you want to obtain the dates in the first column. This is a problem if you want to use csvread or dlmread as both of these functions can handle numeric data only (note that 10/24/2011 is a string).
So, I'm going to assume that what you've shown us is representative of your file. Given this, the way to import it into matlab is as follows:
fid1 = fopen('YourFilePathHere', 'r');
D = textscan(fid1, '%s%f%f%f%f%f%f', 'Delimiter', ',', 'HeaderLines', 1);
fclose(fid1)
D = [datenum(D{1}, 'mm/dd/yyyy'), D{2}, D{3}, D{4}, D{5}, D{6}, D{7}];
In the first line, I open the file for reading. In the second line I scan in the data. Note that format string '%s%f%f%f%f%f%f'. This says that the first column is string format %s, and the next 6 columns are floating point (we could alter this to other numeric types, but floating point is simplest for now). In the third line I close the file. In the final line, I convert the date strings to matlab numerical date format, and then combine this with the rest of the data into one numerical matrix, ready for analysis.
DATAis part of the file get rid of it,csvreadonly reads numbers. And if it isn't, get rid of it, it's misleading people trying to help you.