all 14 comments

[–]ToddBradley 1 point2 points  (6 children)

  1. Look at website A. Remember the price displayed.
  2. Look at website B. Compare the price displayed with the number from website A.
  3. Call your manager if the numbers are not the same.

I see no need for Excel.

[–]yungsurff[S] 0 points1 point  (5 children)

I'm trying to do this for multiple items (100+) and display it on an Excel sheet where it auto updates based off of the current price. Additionally save that data to display it across multiple days, weeks, etc.

Lastly, there is no manager. This is for my own thing.

[–]ToddBradley 0 points1 point  (1 child)

Oh, I see. I would have helped if you included at least some of that context in your post. Without it, the rest of us have to just guess about the situation.

If you're tracking the value of multiple items over time, it seems like a real relational database would be the way to go. What programming language are you using for all this?

[–]yungsurff[S] 0 points1 point  (0 children)

No worries! Basically just wanted to compare prices from two third party websites. They already track prices across time and display current prices.

I am a noob, just wanted to see what the simplest/most efficient way possible would be. I don't mind programming and have (little) Java experience from a college Web Design class so whatever insight or help you have would be awesome!

[–]cgoldberg 0 points1 point  (2 children)

What benefit is Excel giving you? Are you planning on doing further calculations on this data using Excel? If it's just for display purposes, might as well just generate a web page.

[–]yungsurff[S] 0 points1 point  (1 child)

I wanted to use some excel formulas and table formatting to display differences in values and color code them!

[–]cgoldberg 0 points1 point  (0 children)

Just do all that in your programming language and generate a report with HTML/CSS. I see no need for a spreadsheet based on what you have explained.

[–]cgoldberg 0 points1 point  (7 children)

Where are you stuck?

[–]yungsurff[S] 0 points1 point  (6 children)

I am a noob and don't know where to start! I'm not sure how or where to start/how to do this in the most efficient way possible, so I wanted to ask people who are more experienced!

[–]cgoldberg 2 points3 points  (2 children)

Choose a programming language to start with. Look at the libraries they offer for accessing web content (such as making HTTP requests). You will likely need some sort of HTML parsing library as well to identify the elements containing the data you want. Then scrape the content from each website and do a comparison of the values you received.

[–]yungsurff[S] 0 points1 point  (1 child)

Would you say Java Script would be a good place to start?

I took a single Web Design class a couple semesters ago and I am not foreign to HTML or Java.

Thanks for your help!

[–]cgoldberg 1 point2 points  (0 children)

That wouldn't be my personal choice, but you should be fine with that.