Move Quickbooks data to Excel

mrsphxbabe

Board Regular
Joined
Aug 11, 2008
Messages
60
Hello, we use quickbooks for our accounting needs. The problem is that quickbooks (qbs) wont allow certain information to be displayed on some reports. We can pull a YTD sales report that shows a comparison from last year, but it will not display who the sales rep is for that company. Is there a formula or macro that can be used so that a column would be added automatically and could add the reps names in that column next to the correct company? Right now I have to run 35 separate reports, 1 report for each sales rep in order to get the sales for each individual rep. We want to run 1 report and have the reps automatically matched to the company name. Below is the example spread sheet, the column that has a header of "rep"is what needs to be added along with the sales rep. is this possible?

repJan 18Jan 17$ Change% ChangeFeb 18Feb 17$ Change% ChangeMar 18Mar 17
Aaron & Company - Flemington, NJsa0.000.000.000.0%0.000.000.000.0%0.000.00
Ace Plumbing, Heating & Electricalsa0.001,160.00-1,160.00-100.0%0.000.000.000.0%0.000.00
AF SUPPLYas
Brooklyn, NY - AF Supplyasas
Liberty - Hicksville NY - AFkijmnn604.000.00604.00100.0%0.000.000.000.0%0.000.00
Brooklyn, NY - AF Supply - Otherasd44.000.0044.00100.0%0.000.000.000.0%954.0088.00
Total Brooklyn, NY - AF Supplyadfaf648.000.00648.00100.0%0.000.000.000.0%954.0088.00
New York, NY - AF Supplyadfaf0.000.000.000.0%0.000.000.000.0%0.000.00
Quality - Harrison, NJ - AF Supplyafda0.00844.00-844.00-100.0%0.000.000.000.0%0.000.00
AF SUPPLY - Other 0.000.000.000.0%0.000.000.000.0%0.000.00
Total AF SUPPLYafdaf648.00844.00-196.00-23.22%0.000.000.000.0%954.0088.00
Anew ******* & Bath Design 573.750.00573.75100.0%78.750.0078.75100.0%-157.500.00
Atlantic Plumbingfafaf0.000.000.000.0%0.000.000.000.0%0.000.00
Bathtique, LTD 0.000.000.000.0%0.000.000.000.0%0.00283.60

<colgroup><col><col><col><col><col span="2"><col><col><col span="2"><col><col><col span="2"></colgroup><tbody>
</tbody>
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Apart from contacting Quickbooks support and getting info from them, I'd suggest maybe creating a table of Companies with the reps name in the adjacent column, then using a VLOOKUP formula to source the reps name.
 
Upvote 0
Thank you Michael for the response. QuickBooks is no help. the reports are very limited. The VLOOKUP formula may be the easy solution, however its only easy if you know how to do it. I do not. any help would be greatly appreciated.
thanks again
 
Upvote 0
Create a table of data in say Sheet2 with the company names in column 1 and the associated reps name in col 2...like this


Excel 2007
AB
1Aaron & Company - Flemington, NJbill
2Ace Plumbing, Heating & Electricalbill
3AF SUPPLYbill
4Brooklyn, NY - AF Supplyfred
5Liberty - Hicksville NY - AFjoe
6Brooklyn, NY - AF Supply - Otherjoe
7Total Brooklyn, NY - AF Supplyjoe
8New York, NY - AF Supplyjoe
9Quality - Harrison, NJ - AF Supplyjoe
10AF SUPPLY - Otherjoe
11Total AF SUPPLYjoe
12Anew ******* & Bath Designjoe
13Atlantic Plumbingjoe
14Bathtique, LTDjoe
Sheet2



then back in the report sheet, ASSUMING the reps are listed column 2....copy this formula and drag it down as required....

Excel 2007
ABCDE
2Aaron & Company - Flemington, NJbill000
3Ace Plumbing, Heating & Electricalbill01,160.00-1,160.00
4AF SUPPLYbill
5Brooklyn, NY - AF Supplyfred
6Liberty - Hicksville NY - AFjoe6040604
7Brooklyn, NY - AF Supply - Otherfred44044
8AF SUPPLYbill6480648
9New York, NY - AF Supplyjoe000
10Quality - Harrison, NJ - AF Supplyjoe0844-844
11AF SUPPLY - Otherbill000
12Total AF SUPPLYjoe648844-196
13Anew ******* & Bath Designbill573.750573.75
14Atlantic Plumbingbill000
15Bathtique, LTDbill000
Sheet1
Cell Formulas
RangeFormula
B2=IFERROR(VLOOKUP(A2,Sheet2!$A$1:$B$14,2),"No Rep listed")


you will need to change both the references to the rows in the formulaes...see in red below

Code:
=IFERROR(VLOOKUP(A2,Sheet2![color=red]$A$1:$B$14[/color],2),"No Rep listed")
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,399
Latest member
alchavar

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