To create and pop open an excel file
19 views (last 30 days)
Show older comments
Right now I am able to do calculations of two excel file data and output its result to the 3rd excel file which is already existing. Now I want to do two things :
- It should create a new excel file and store the calculated result in it.
- After storing the result in the newly created file it should open that new file on the screen,showing the results.
Can anyone tell me what script should I add to my existing code to get this kind of result?
0 Comments
Accepted Answer
Image Analyst
on 28 Jul 2014
You say you already have the 3rd workbook, so for #1, why can't you just use copyfile() to make another one?
For #2, use the system() command to launch Excel workbook
system('D:\Matlab\work\Camera Noise Comparison.xlsx')
More Answers (2)
Joseph Cheng
on 28 Jul 2014
the first one should be easy enough as you know how to read the first 2 excel files and you can write to the 3rd excel file. use the xlswrite but have an input name or generic name. the second one would be to use winopen() function to open the file in excel showing the results.
2 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!