We have SharePoint Foundation 2013 with Office Web Apps installed. I would like to display an excel spreadsheet on a page and without Excel Services, have arrived at the following solution:
Add a Content Editor web part to the page. Edit the coded and insert the spreadsheet as so:
<iframe src="https://mysharepointsite.com/BI/Shared%20Documents/ExcelFileName.xlsx?web=1"
width="565" height="445"
</iframe>
I would like to be able to use additional parameters like wdHideSheetTabs, wdHideHeaders, and ActiveCell but none of the parameters that I add has any effect except the width and height. My questions are:
1) While embedding Excel in an iFrame, is there a way to use these additional parameters
2) If so, what is the proper syntax?
3) If not, is there another solution considering that we don't have SharePoint Enterprise Edition?
Thanks so much!