Edit: How do I pull Excel values and embed it in a webpage?

Imaginer

Diamond Member
Oct 15, 1999
8,076
1
0
I have a list of names and addresses and years and I would like to sort it by year and output it to an HTML format with each page representing a year. How can I get a big excel worksheet to an HTML output in the most SIMPLEST way possible?

Edit: How can I get it to where I can pull excel values onto a webpage? Is there an XML code that allows me to do so? Like for instance, with the large single excel file, after I sorted the data, I would like to pull specific values based on how I sorted it and put those values only on a webpage.

I hope this does not seem too confusing.
 

anxman69

Senior member
Jun 27, 2001
635
1
0
Do whatever data manipulation that you need to do (ie: sorting by year) and then click File -> Save As -> HTML Document. I believe every version of Office above Office 2000 has such a feature.

-Ankur
 

Eli

Super Moderator | Elite Member
Oct 9, 1999
50,419
8
81
I've only used Excel a few times, and I knew about that menu option. :p
 

yobarman

Lifer
Jan 11, 2001
11,642
1
0
Originally posted by: Eli
I've only used Excel a few times, and I knew about that menu option. :p

haha for real, it took me ONE time to figure this out when i was making my schedule for classes. geez people mess around with program for 5 minutes before you ask a newbie question!

RTFM!~

edit: didnt read the post so this probably doesnt apply anymore, but still RTFM!
 

Imaginer

Diamond Member
Oct 15, 1999
8,076
1
0
Ok I guess I need to make myself a bit more clearer.

I know how to make an entire excel worksheet to a html page. Thats not hard. But I just want to pull specific values and embed it into an existing HTML page.
 

Electric Amish

Elite Member
Oct 11, 1999
23,578
1
0
Originally posted by: Tyler
This can do it. But it's going to scare you and you're not gonig to try it, and you're going to end up copying and pasting from the excel file.

Ahh, it takes Tyler to post for me to even think about Perl! DOH! ;)

You could save the excel sheet as CSV then write a quick Perl script that will parse it and write it to a webpage.

amish
 

loup garou

Lifer
Feb 17, 2000
35,132
1
81
What about importing it into an Access database and making data access pages?
I'm not really clear on what you want to do. Are these pages going to be dynamic at all?
 

Imaginer

Diamond Member
Oct 15, 1999
8,076
1
0
It will be eventually dynamic.

But I do not have much experience with access, can anyone give some quick tips?

nm, I think i figured access. Its just now a matter of pulling values from access instead.
 

silverpig

Lifer
Jul 29, 2001
27,703
12
81
I'm actually looking for something sorta like this too... I've got a product list that has a column of empty values for the quantity wanted. I want to be able to read that column, and then print the row only if there is a value in the quantity column...
 

Imaginer

Diamond Member
Oct 15, 1999
8,076
1
0
Ok, I figured what I really need.

I need a drop down menu where I select something like a year. Then from that, the page will display any information that has that year such as names and emails. It would pull the information from a database where if you edit the database, you can change what the page displays.

Is there a way to do this without reconverting the database everytime someone edits the information?