MATLAB: How to avoid third party Excel Add-in update pop-up opening each time I call xlsread?

MATLABpop-upxlsread

Every time I open Excel process, I get a pop-up about a third part excel add-in update.
I have some excel files and I am trying to read them in MATLAB using xlsread.
Every time I call xlsread, I am getting the same pop-up.
Is there a way to disable this?

Best Answer

This happens because xlsread calls Excel process and eventually excel process will throw this pop-up.
One workaround would be to use the basic import mode to read from spreadsheet.
num = xlsread(filename,sheet,xlRange,'basic')
You don't need excel process to read data from spreadsheet in basic mode. 
If you do not specify all the arguments, use empty character vectors, '' , as placeholders, for example, num = xlsread(filename,'','','basic').