|
I'm trying to write a web page that takes excel info from the clipboard. I'd like to be able to pick up the XML Spreadsheet info, rather than just the text.
Is this possible? I'd like to do it in most browsers, if not all.
Thanks
Started by ilivewithian on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
"Most browsers, if not all the browser and Excel as the two ends ....
You may be able to use VBA in Excel for this trick.
If you copy from Excel directly and paste in into a textarea it will be text-only , separated with a textarea .
|
|
We have a requirement to export different pages of our I.E. only web application to Excel/pdf documents. The pages have graphics/grids/text, etc...They should also be printable as well. I heard weSuperGoo mentioned, but have no experience with it. I am...
Answer Snippets (Read the full thread at stackoverflow):
I've been using that trick is provide a suitably formatted version of the... .
Excel will automatically convert the HTML table to a spreadsheet.
To export to Excel, you can simply just export a HTML table as HTML and name the file whatever.xls.
|
|
Can I get some help interpreting / implementing the answers at: http://stackoverflow.com/questions/2006468/copy-paste-from-excel-to-a-web-page/2006789 please?
This was the most useful answer Google found for "Paste Excel to Web Page/Form" -- seems perfect...
Started by KingsKid360 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Hard to tell without seeing any of your code, but does your html have an element with id=excel_table?
example:
<div id='excel_table'> Data table will go here </div>
Given that you're;/script> <script type="text/javascript....
|
Ask your Facebook Friends
|
Hi All,
Is there a standard way or library to copy and paste from a spreasheet to a web form? When I select more than one cell from Excel I (obviously) lose the delimiter and all is pasted into one cell of the web form. Does it have to be done in VB? ...
Started by His dudeness on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Try it yourself....
Here an in-dept tutorial on how to read and write Excel data with PHP not be visible in the form.
Maybe it would be better if you would read your excel file from PHP, and then either save it to a DB or do some processing on it.
|
|
I am looking to embed a live Excel spread sheet in one of my Web pages. This sheet when opened in Excel displays live count data from my equipment. I am looking for a means to display this same live data on a Web Page so it can be viewed with a standard...
Started by Doc666 on
, 15 posts
by 8 people.
Answer Snippets (Read the full thread at windowssecrets):
Usually webYou....
The technical details do not stop there, then.
With?
If I had to do this, I would do it using COM Interop, from a .net web page, using Excel VBA to access, in Excel and do it from a .net web page.
|
|
Good afternoon,
I have a web query in Excel 2002 going against a web page that returns a date column. The dates are returned as DD/MM/YYYY, as I would like to show them in my spreadsheet. My machine running Excel has its regional settings set to en-GB...
Started by AlanR on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Universal....
I don't see how any of what you suggested would of trouble .
Still, Excel's Web Query returns data in en-US.
The alternative.
OTOH - if you had control over the web page, you could change the date format.
A difference.
|
|
I have an Excel spreadsheet template with data and a chart. I want to be able to publish (repeatably) the raw data to a web server using using a web service interface. I would like to do this with vanilla Excel--no add-ons or required ActiveX controls...
Started by Peter Stephens on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Microsoft provides the ability....
(This would not read the chart.
That would interface directly with the Excel template, read the Excel data and push the data to a webYes, use the OLEDB driver and read the data from Excel directly.
|
|
I'm looking for a way to present excel documents on the web either by :
converting Excel documents to html, css and javascript or by, using silverlight control
I'm not looking for a way to program the conversion by my self. What I'm after is a control...
Started by Nikola Stjelja on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You could try ....
You can do things like convert a datatable to a spreadsheet, execute macros it in a datagrid .
Development platform that allows you to manipulate and generate Excel files with managed code, no install of Excel required.
|
|
I want to embed a picture from the web in an excel spreadsheet.
I want to embed the picture by url, in the same manner that pictures are embedded in an html page. I don't want to download the picture and insert it as a regular picture.
And I want the ...
Started by flybywire on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
And type the URL of the picture you want.
In Excel, go to Insert > Picture > From file...
|
|
I have an ASP.Net MVC site that generates a Microsoft Excel 2003 XML formatted spreadsheet. The spreadsheet looks good, the controller and views both work, but the file won't open in Excel. It opens in the browser because it is an XML document.
I tried...
Started by Mark Ewer on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try with
Response.ContentType = "application/vnd.ms-excel.
Extension, or changing it to .xls or .csv.
|