How to create a table for baseline sales?

DrBacon

New Member
Joined
Sep 4, 2018
Messages
27
Hello everyone, long time no post!

I have a situation, which I would think can be solved rather simply, but I can't figure out a way to do it.

I have several POS systems and how much they are able to sell. We also have the knowledge of how much volume we do every weekday, every month that looks like this:
1687909676289.png


And we have a table that has how much a POS can sell in a given month:

1687909745670.png


So what I need the table to do, is if say we are in June, and it is a Sunday, 6.3% of the volume will be consumed that day, then 7.39% on Monday and so on. I have tried doing this in the Data Model, but I can seem to connect them. I would think that I needed a table that has the POSs and all dates of the month, for example POS1 Jun1 amount 1, POS1 Jun2 amount2, and so on. Any ideas on how to do this?
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
you can use a grid lookup to do that -
and bring back the % then apply that to the monthly sales per POS

so to get the %
=INDEX($B$2:$H$13,MATCH(K$1,$A$2:$A$13,0),MATCH(K$2,$B$1:$H$1,0))

NOTE - i have used text entries for the month and day - NOT using dates and formatting to just show the Month , or Day ,

Book12
ABCDEFGHIJKL
1monthsSundayMondayTuesdayWednesdayThursdayFridaySaturday Monthjunjan
2jan10%12%16%20%22%26%28%DaySundayFriday
3feb11%13%17%21%23%27%29%Percent0.150.26
4mar12%14%18%22%24%28%30%
5apr13%15%19%23%25%29%31%
6may14%16%20%24%26%30%32%
7jun15%17%21%25%27%31%33%
8jul16%18%22%26%28%32%34%
9aug17%19%23%27%29%33%35%
10sep18%20%24%28%30%34%36%
11oct19%21%25%29%31%35%37%
12nov20%22%26%30%32%36%38%
13dec21%23%27%31%33%37%39%
Sheet1
Cell Formulas
RangeFormula
K3:L3K3=INDEX($B$2:$H$13,MATCH(K$1,$A$2:$A$13,0),MATCH(K$2,$B$1:$H$1,0))


now you can apply that to the POS

Book12
ABCDE
16junjandec
17SundayFridaywednesday
18POS1500075013001550
19POS210000150026003100
20Pos320000300052006200
Sheet1
Cell Formulas
RangeFormula
C18:E20C18=INDEX($B$2:$H$13,MATCH(C$16,$A$2:$A$13,0),MATCH(C$17,$B$1:$H$1,0))*$B18


Note: Images are difficult to see , and also requires that I input all the data myself, which means I may make an error, which is very time consuming, and from my point of view less likely to get a response, if a complicated spreadsheet. Plus we cannot see any of the formulas used.

Therefore -

A SMALL sample spreadsheet, around 10-20 rows, would help a lot here, with all sensitive data removed, and expected results mocked up and manually entered, with a few notes of explanation.

This will possibly enable a quicker and more accurate solution for you.

MrExcel has a tool called “XL2BB” that lets you post samples of your data and will allow us to copy/paste your sample data into our Excel spreadsheets, saving a lot of time.

You can also test to see if it works ok, in the "Test Here" forum.

OR if you cannot get XL2BB to work, or have restrictions on your PC

then put the sample spreadsheet onto a share

I only tend to goto OneDrive, Dropbox or google docs , as I'm never certain of other random share sites and possible virus.
Please make sure you have a representative data sample and also that the data has been desensitised, remember this site is open to anyone with internet access to see - so any sensitive / personal data should be removed

Make sure you set any share or google to share to everyone
 
Upvote 0

Forum statistics

Threads
1,215,174
Messages
6,123,451
Members
449,100
Latest member
sktz

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