Judge Weebles
New Member
- Joined
- Oct 17, 2013
- Messages
- 4
First post, here goes
Scenerio, I have a report daily that shows people who have not taken care of their tickets in one of our software packages. I export that file to excel, which shows me a daily list, names, departments, etc.
I have set up a macro in the 'Data' section - From Other sources - Micro soft query - Excel files - SQL
Which is
Select * from `H:\Master.xlsx`.`tabname$`
union
select * from `H:\Daily.xlsx`.`tabname$`
Which gives me a tab in the master workbook with an ongoing tally of people in the past who have not taken care of their tickets.
What I am trying to do now, using various union, left join, null etc commands but failing to figure out..
I would like to take the sheet from today, with the NEW FOLKS who were not on that list yesterday, and specifically point out those few individuals.
So Yesterday I had 40 people on my list. 10 took care of their reports, and dropped off the list, but 5 new folks joined on today.. I just want a quick little way to figure out who those new 5 are that are on the list today, but are not on that ongoing master list that was updated yesterday?
(hope I gave enough info to help - read through hundreds of threads, knowing this is an easier task, tried to look for previous posts, but found none)
Thanks
Scenerio, I have a report daily that shows people who have not taken care of their tickets in one of our software packages. I export that file to excel, which shows me a daily list, names, departments, etc.
I have set up a macro in the 'Data' section - From Other sources - Micro soft query - Excel files - SQL
Which is
Select * from `H:\Master.xlsx`.`tabname$`
union
select * from `H:\Daily.xlsx`.`tabname$`
Which gives me a tab in the master workbook with an ongoing tally of people in the past who have not taken care of their tickets.
What I am trying to do now, using various union, left join, null etc commands but failing to figure out..
I would like to take the sheet from today, with the NEW FOLKS who were not on that list yesterday, and specifically point out those few individuals.
So Yesterday I had 40 people on my list. 10 took care of their reports, and dropped off the list, but 5 new folks joined on today.. I just want a quick little way to figure out who those new 5 are that are on the list today, but are not on that ongoing master list that was updated yesterday?
(hope I gave enough info to help - read through hundreds of threads, knowing this is an easier task, tried to look for previous posts, but found none)
Thanks