'How to remove excel formula in laravel?
I want to upload excel file using laravel and the uploaded excel file should takes only the cell values and not formulas.
this is my upload code for excel file but i could not find anyhting about save excel file by only values and not formula. I would appreciate your answer anyways. thank you.
if($request){
return redirect('upload')->with('success','uploaded successfully');
}else{
return redirect('upload')->with('fail', 'upload failed');
}```
Solution 1:[1]
You could try using maatwebsite/excel
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Cas |
