Is it possible to get data from a webpage in real-time to an excel file

0 votes

I want to develop an Excel tool that would serve as a monitoring tool for our floor agents.

The only thing we currently have is a dashboard to examine the status of all agents and the lengths of their status or calls; we do not currently have an exclusive WFM tool that would monitor and call out agents with their activities and productivity. This is a web-based dialer viewer that simply displays agents' current statuses and doesn't alert us if an agent exceeds the limits we've set for wrap-up time, break time, or lunchtime.

enter image description here

To fill the table with the data I require, such as the name of the agent, their current status, and the current length of the call, I currently have an excel file that looks up values from another sheet.

The additional sheet I stated before is a blank sheet onto which I would paste all the information from the dialer's webpage. In essence, I'm just using the copy-paste method to copy and paste the entire contents of our dialer's webpage onto the blank Excel sheet I generated, where the table I established will find all the data I setup from that sheet.

enter image description here

Even though I really don't know enough, I attempted Data>Get Data>From Web and got nothing.

I tried pasting the website address, but nothing appears to come up.

I am aware, as I've already stated, that I don't really know enough to use this strategy, and perhaps I need to learn some fundamentals.

What I'd like to know is whether it's possible to link a website, sync its data to an excel sheet, and make it real-time so that I may have a makeshift WFM Tool to assist me to keep track of our agents' activity.

Jan 17, 2023 in Others by Kithuzzz
• 38,010 points
284 views

1 answer to this question.

0 votes

The conventional method of obtaining data from the Internet (Data > Get Data > From Web) does not always work. Tables on a web page can be recognised by Excel, but not always in the same manner that the human eye does.

Actually, there are two options here:

  1. write a macro that parses specifically those pages from which you are currently getting data manually (“…I am just doing copy-paste method…”).
  2. prepare web pages so that data from them can be automatically downloaded via Data >Get Data>From Web via standard Excel functionality. Both require programming specifically for your task.

I could, for instance, create a parser, but I would need access to the website from which you are copying and pasting.

Alternately, the web page's programmer may produce new pages using the same data in an Excel-compatible format. However, this programmer needs to be very specific about web page design.

answered Jan 17, 2023 by narikkadan
• 63,420 points

Related Questions In Others

0 votes
1 answer

How to automatically get a specified range of data from Excel to XML in VBA

Range method works, always identify the sheet ...READ MORE

answered Mar 18, 2023 in Others by narikkadan
• 63,420 points
541 views
0 votes
1 answer

Select data that meet criteria from a table, adding it to a combobox in userform VBA Excel

Fill Combo Box With Matches Sub GetSourceAcc() ...READ MORE

answered Mar 26, 2023 in Others by Kithuzzz
• 38,010 points
467 views
0 votes
1 answer

Is it possible to create a universal hyperlink in excel for windows and mac without programming

You may learn whether it runs on ...READ MORE

answered Mar 28, 2023 in Others by Kithuzzz
• 38,010 points
484 views
0 votes
1 answer

Is there any way in python to auto-correct spelling mistake in multiple rows of an excel files of a single column?

Use Spellchecker for doing your stuff: import pandas ...READ MORE

answered Oct 14, 2022 in Others by narikkadan
• 63,420 points
1,594 views
0 votes
0 answers

Convert Rows to Columns with values in Excel using custom format

1 I having a Excel sheet with 1 ...READ MORE

Feb 17, 2022 in Others by Edureka
• 13,670 points
728 views
0 votes
1 answer

Remove formulas from all worksheets in Excel using VBA

Try this : Option Explicit Sub test1() ...READ MORE

answered Oct 3, 2022 in Others by narikkadan
• 63,420 points
1,465 views
0 votes
1 answer

Calculate monthly average from daily data without PivotTable

Assuming you have the months in column D enter ...READ MORE

answered Oct 3, 2022 in Others by narikkadan
• 63,420 points
1,314 views
0 votes
1 answer

Automate compound annual growth rate (CAGR) calculation

The following PowerPivot DAX formulas worked for ...READ MORE

answered Oct 7, 2022 in Others by narikkadan
• 63,420 points
1,005 views
0 votes
1 answer

Excel: Is it possible to reorder the data in 2 columns to match up if they have a certain number of characters / a string in common?

Try this: =LET(files,A1:A4, URLs,B1:B4, f,BYROW(files,LAMBDA(r,TEX ...READ MORE

answered Jan 21, 2023 in Others by narikkadan
• 63,420 points
283 views
0 votes
1 answer

Using Visual Basic to pull data from within a range to use in an Excel function

Use AVERAGEIFS instead of the full range. ...READ MORE

answered Jan 14, 2023 in Others by narikkadan
• 63,420 points
307 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP