WebSite X5Help Center

 
Pierre S.
Pierre S.
User

Inboxing Google Excel / spreadsheets  en

Author: Pierre S.
Visited 1068, Followers 1, Shared 0  

Hello all!

I have Google Excel / spreadsheets where I put up an inventory and I have shared that list before on WIX by inboxing on the page. When I make changes in excel, it changes automatically as it takes the information from the sharing from Google spreadsheets. But I do not get it to work with this system. Have tried most things. I would like it to inbox the entire excel page in my template page on websiteX5. Does anyone have a tip? I link to the WIX page so you can see what it looks like there: https://ebrevet.wixsite.com/minsida/kopia-pa-egna-snapcase

Posted on the
3 ANSWERS
John S.
John S.
User

Hello Pierre

You put a html object on the X5 page.

In the html-object you specify an iframe.

The Google docs can give you the code for the iframe

Read more
Posted on the from John S.
John S.
John S.
User

It could be something like this :

<iframe sandbox="allow-same-origin allow-forms allow-popups allow-scripts allow-pointer-lock" class="_3HLqS" title="htmlComp-iframe" name="htmlComp-iframe" width="100%" height="100%" data-src="" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vSW4bGZW3kPhUsW_IHSz7JZv5FrWtmjXEjH3og9-jShyPGkmO3sn6yIJbx36T3_AJjQ1SbFc_uDgm-o/pubhtml"></iframe>

That is the code that you should put in the html-object

Read more
Posted on the from John S.
John S.
John S.
User

You could also set a height for the iframe like this :

<iframe sandbox="allow-same-origin allow-forms allow-popups allow-scripts allow-pointer-lock" class="_3HLqS" title="htmlComp-iframe" name="htmlComp-iframe" width="100%" height="600px" data-src="" src="https://docs.google.com/spreadsheets/d/e/2PACX-1vSW4bGZW3kPhUsW_IHSz7JZv5FrWtmjXEjH3og9-jShyPGkmO3sn6yIJbx36T3_AJjQ1SbFc_uDgm-o/pubhtml"></iframe>

It is set to 600px.

The document can be scrolled.

Read more
Posted on the from John S.