UPDATE: Still need help. First answer didn't really help.
Here is what I've got so far:
[data pathname] = uigetfile( ...
{'*.m;*.xls;*.xlt;*.xlm;*.xlsx*.fig;*.mat;*.mdl', 'Files (*.m, *.fig, *.mat, *.mdl)'; ...
'*.*', 'All Files (*.*)'}, ... 'Pick a file','C:\Users\');
stuff = importdata([pathname data]);
Previously I had xlsread instead of import data, but it wasn't grabbing the variable names (like row one has all the different names of the data, Day 1, Day 2 ,etc.). Also, the first column, column A, doesn't get pulled either (it is also full of text, John Smith, Alice Jane, etc.)
I switched to using the importdata function and that seems to work but it's output, "stuff" is a structure with two things inside. What I want is stuff to equal the data in the excel file I'm trying to pull (stuff equals the table of data, column names and row names AND data all in one).
Thank you,
L