Automating daily tasks using Excel/Power Query and SQL

Stacker

Board Regular
Joined
Jul 11, 2021
Messages
86
Office Version
  1. 365
Platform
  1. Windows
So I am looking at COVID stats all day and I have to prepare them for my manager. This is a multistage process and it's fairly repetive. As a result i want to automate it so i can spend my days doing more productive **** or cat videos. Either i am not bothered. It's a multi stage process and this is what i have to do.


Step 1

Download a power BI dataset
https://app.powerbi.com/groups/me/apps/....
Save to a certain location
\\sancifs\Policy_and_Governance\Apps\TableauDataSource\PublicHealth\Covid-19\Data\Positive_test_data\Home_visits
Delete first two rows (should be mostly blank) so headings are on row 1
Copy and paste some headings and formulas
Open file from above location
Copy data (not headings) from ‘Cases_to_ddmmyy’ columns AV to BA into the ‘db_import_file’. Paste as values only.
Save and close both files.

Upload to SQL
  • Open SQL and go to Databases à PHI_Covid [BW1] à Tables à[BW2] tblPHE_PowerBI_postcode_cases_detailed[BW3]
  • Right click > Script Table As > Delete To >New Query Editor Window

Use the below query and then execute:

USE [PHI_Covid]

GO



DELETE FROM [dbo].[tblPHE_PowerBI_postcode_cases_detailed]

GO

Right click on PHI_Covid > Tasks > Import data

Run through import wizard

Select data source as excel
Browse excel file path with previously saved opath
Change destination table to [dbo].[tblPHE.........
Keep clicking next and finish wizard.
THis is the first task and I wanna see if this can be done before i try to do the next.

Thanks
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
So I think I have found a workaround for linking the datasets to excel. I used this guide and I was able to link excel to this dataset. However when I try to build my table using the pivot table it fails and when I try to move the field settings to the Values section it fails and says "The field you are moving cannot be placed in that area of the report". What can I do? I have column headings like Status, postcode, date entered. How do i make these the column headings whilst keeping their values the values without producing the above error.
 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,020
Members
448,939
Latest member
Leon Leenders

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top