0
votes

I am using Laravel Excel Maatwebsite package. When I try to read to excel I am getting this error:

 Formula Error: Unexpected operator '='

How can disable read formula in this package.I want to only get field value from excel ?

Thanks

1

1 Answers

1
votes

According to the documentation you can enable / disable calculating formulas like this:

// Enable calculation
$reader->calculate();

// Disable calculation
$reader->calculate(false);