Add sheet to existing excel file with Laravel ExcelLaravel Excel - blank sheets when creating multiple sheetsCan't print Excel file valuescharts disappear on running laravel-excelUndefined Laravel path callsUploading excel file LaravelLaravel Excel A1 ErrorUnable to download excel sheet from array using Laravel-Excel?Laravel local storage - file exists but cannot be opend in another classCall to a member function getClientOriginalName() on null when upload image use file system Laravel

Proper way to shut down consumer

How to see the previous "Accessed" date in Windows

My manager quit. Should I agree to defer wage increase to accommodate budget concerns?

Difference between types of yeast

How to create fractional SI units (SI...sqrts)?

Going to France with limited French for a day

How can an attacker use robots.txt?

Is differentiation as a map discontinuous?

Do I have advantage with Riposte when moving away from a flanked enemy and triggering an opportunity attack?

What exactly did this mechanic sabotage on the American Airlines 737, and how dangerous was it?

How can this Stack Exchange site have an animated favicon?

Tesla coil and Tesla tower

Why did UK NHS pay for homeopathic treatments?

Lost Update Understanding

What secular civic space would pioneers build for small frontier towns?

Examples of "unsuccessful" theories with afterlives

Safe to use 220V electric clothes dryer when building has been bridged down to 110V?

Strange Sticky Substance on Digital Camera

Carry vs Roll-Down on a zero-coupon IRS

Should I answer honestly if asked why I was late one day when I was actually in an interview?

Received a package but didn't order it

Is there any relation/leak between two sections of LM358 op-amp?

How to deal with a Homophobic PC

Seeming violation-wave travelling faster than speed of light



Add sheet to existing excel file with Laravel Excel


Laravel Excel - blank sheets when creating multiple sheetsCan't print Excel file valuescharts disappear on running laravel-excelUndefined Laravel path callsUploading excel file LaravelLaravel Excel A1 ErrorUnable to download excel sheet from array using Laravel-Excel?Laravel local storage - file exists but cannot be opend in another classCall to a member function getClientOriginalName() on null when upload image use file system Laravel






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am using Laravel Excel 2.1. I have an array of data that I want to add as a new sheet to an existing excel file and save it locally.



Here is the code I am trying



Excel::load(base_path() . '/storage/app/surveyFilters/' . $surveyFilter->filename, function($file) use($data) 
$file->sheet('Individuals - Tagged', function($sheet) use($data)

$sheet->fromArray($data);
);

)->store('xls', public_path('assets'));


I get this error "Call to a member function fromArray() on null". If I var_dump $data right before the call and exit it shows my array so $data is not null. I also tried with() instead of fromArray() but get similar error message.



Any help would be appreciated.










share|improve this question


























  • The error message is saying $sheet is null, not $data

    – Derek Pollard
    Mar 28 at 17:57











  • You are correct. $sheet is null. Any idea why $sheet is null? If I comment out $sheet->fromArray($data); it runs fine and puts adds the excel file to the path I give it so it loads the file fine.

    – Chris
    Mar 28 at 18:13











  • From reading the documentation, it appears as though you're trying to add a sheet on an already created file, whereas the documentation only shows that you can do that from a newly created instance from Excel::create()

    – Derek Pollard
    Mar 28 at 18:19











  • Thanks. That would explain it as that is what i am trying to do.

    – Chris
    Mar 28 at 18:27

















0















I am using Laravel Excel 2.1. I have an array of data that I want to add as a new sheet to an existing excel file and save it locally.



Here is the code I am trying



Excel::load(base_path() . '/storage/app/surveyFilters/' . $surveyFilter->filename, function($file) use($data) 
$file->sheet('Individuals - Tagged', function($sheet) use($data)

$sheet->fromArray($data);
);

)->store('xls', public_path('assets'));


I get this error "Call to a member function fromArray() on null". If I var_dump $data right before the call and exit it shows my array so $data is not null. I also tried with() instead of fromArray() but get similar error message.



Any help would be appreciated.










share|improve this question


























  • The error message is saying $sheet is null, not $data

    – Derek Pollard
    Mar 28 at 17:57











  • You are correct. $sheet is null. Any idea why $sheet is null? If I comment out $sheet->fromArray($data); it runs fine and puts adds the excel file to the path I give it so it loads the file fine.

    – Chris
    Mar 28 at 18:13











  • From reading the documentation, it appears as though you're trying to add a sheet on an already created file, whereas the documentation only shows that you can do that from a newly created instance from Excel::create()

    – Derek Pollard
    Mar 28 at 18:19











  • Thanks. That would explain it as that is what i am trying to do.

    – Chris
    Mar 28 at 18:27













0












0








0








I am using Laravel Excel 2.1. I have an array of data that I want to add as a new sheet to an existing excel file and save it locally.



Here is the code I am trying



Excel::load(base_path() . '/storage/app/surveyFilters/' . $surveyFilter->filename, function($file) use($data) 
$file->sheet('Individuals - Tagged', function($sheet) use($data)

$sheet->fromArray($data);
);

)->store('xls', public_path('assets'));


I get this error "Call to a member function fromArray() on null". If I var_dump $data right before the call and exit it shows my array so $data is not null. I also tried with() instead of fromArray() but get similar error message.



Any help would be appreciated.










share|improve this question
















I am using Laravel Excel 2.1. I have an array of data that I want to add as a new sheet to an existing excel file and save it locally.



Here is the code I am trying



Excel::load(base_path() . '/storage/app/surveyFilters/' . $surveyFilter->filename, function($file) use($data) 
$file->sheet('Individuals - Tagged', function($sheet) use($data)

$sheet->fromArray($data);
);

)->store('xls', public_path('assets'));


I get this error "Call to a member function fromArray() on null". If I var_dump $data right before the call and exit it shows my array so $data is not null. I also tried with() instead of fromArray() but get similar error message.



Any help would be appreciated.







laravel laravel-excel






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 28 at 17:39







Chris

















asked Mar 28 at 16:22









ChrisChris

3013 silver badges14 bronze badges




3013 silver badges14 bronze badges















  • The error message is saying $sheet is null, not $data

    – Derek Pollard
    Mar 28 at 17:57











  • You are correct. $sheet is null. Any idea why $sheet is null? If I comment out $sheet->fromArray($data); it runs fine and puts adds the excel file to the path I give it so it loads the file fine.

    – Chris
    Mar 28 at 18:13











  • From reading the documentation, it appears as though you're trying to add a sheet on an already created file, whereas the documentation only shows that you can do that from a newly created instance from Excel::create()

    – Derek Pollard
    Mar 28 at 18:19











  • Thanks. That would explain it as that is what i am trying to do.

    – Chris
    Mar 28 at 18:27

















  • The error message is saying $sheet is null, not $data

    – Derek Pollard
    Mar 28 at 17:57











  • You are correct. $sheet is null. Any idea why $sheet is null? If I comment out $sheet->fromArray($data); it runs fine and puts adds the excel file to the path I give it so it loads the file fine.

    – Chris
    Mar 28 at 18:13











  • From reading the documentation, it appears as though you're trying to add a sheet on an already created file, whereas the documentation only shows that you can do that from a newly created instance from Excel::create()

    – Derek Pollard
    Mar 28 at 18:19











  • Thanks. That would explain it as that is what i am trying to do.

    – Chris
    Mar 28 at 18:27
















The error message is saying $sheet is null, not $data

– Derek Pollard
Mar 28 at 17:57





The error message is saying $sheet is null, not $data

– Derek Pollard
Mar 28 at 17:57













You are correct. $sheet is null. Any idea why $sheet is null? If I comment out $sheet->fromArray($data); it runs fine and puts adds the excel file to the path I give it so it loads the file fine.

– Chris
Mar 28 at 18:13





You are correct. $sheet is null. Any idea why $sheet is null? If I comment out $sheet->fromArray($data); it runs fine and puts adds the excel file to the path I give it so it loads the file fine.

– Chris
Mar 28 at 18:13













From reading the documentation, it appears as though you're trying to add a sheet on an already created file, whereas the documentation only shows that you can do that from a newly created instance from Excel::create()

– Derek Pollard
Mar 28 at 18:19





From reading the documentation, it appears as though you're trying to add a sheet on an already created file, whereas the documentation only shows that you can do that from a newly created instance from Excel::create()

– Derek Pollard
Mar 28 at 18:19













Thanks. That would explain it as that is what i am trying to do.

– Chris
Mar 28 at 18:27





Thanks. That would explain it as that is what i am trying to do.

– Chris
Mar 28 at 18:27












0






active

oldest

votes














Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55402485%2fadd-sheet-to-existing-excel-file-with-laravel-excel%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55402485%2fadd-sheet-to-existing-excel-file-with-laravel-excel%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript