Excel Formula...Complex...Invoice tracking without inputting info into multiple spreadsheets

2

I have a list of store# in one worksheet(1) and another worksheet which has (2)invoice tracking for these stores. As the store# & invoice # are added to one worksheet(2), I want the invoice number to insert into worksheet (1) which has a the list of store# next to the correct store number. So, if I input Inv. 3124 (column1) for Store 4545 (column2) into the worksheet (2), I would like it to find store 4545 in worksheet1 and put the invoice # next to that corresponding store.

I am trying to find an easy way to track invoicing by the store number...ensuring each store is only billed once but I want to minimize the amount of time I am spending inputting information into an spreadsheets.

Thanks!

Jennifer

Posted 2014-10-10T01:15:38.067

Reputation: 21

Using Pivot table you can view the store number with invoice number in the format you want. Worksheet(1) basically presents the data format you want and does not have a function - is that correct?. Update your question with a image of worksheet (2) - let us see if pivot table would work or not – Prasanna – 2014-10-10T05:24:04.350

Answers

1

Sounds like a job for pivot table!1

So if you have your data in a table you can use a pivot table. I'll assume for this exercise that your table looks like this -

enter image description here

If you highlight the table and go to insert - pivot table so that the range is the table and it goes to a new worksheet, you can set up a pivot table.

enter image description here

Here are two examples using different metrics (pictured)-

The amount of each invoice for each store, you can see if any invoices are listed twice or charged to two stores: link to bigger view of picture

enter image description here

Here is matching the store to the invoice and counting how many times that invoice appears for the store. It also gives you a total count of invoices per store: link to bigger view of picture

enter image description here

You can do any number of configurations with the pivot table, take a look at all the reference material from Microsoft.

1this is another installment of the "sounds like a job for pivot table" series

Raystafarian

Posted 2014-10-10T01:15:38.067

Reputation: 20 384