Cash register spreadsheet

tsameti

New Member
Joined
Aug 4, 2016
Messages
19
Untitled.png


First of all apologize if this is not the right place to ask for this sort of help.
Can anyone help creating this simple spreadsheet.
I have created one myself but I can make it work just the way I want it.
In the end I had to simplify it to the point where I enter almost all data except for calculation and even that stops if the item number is higher than 2.


=IF(B35=1,B35*27.5,IF(B35=2,B35*27.5))
This is as far as I went and I cant make graphics work either, as for now I simply change color on Item QTY manualy to know what was sold.
 
datesale #itemhow manysale pricecost priceprofitrunning sale pricerunning profitrunning cost%profit on salesrunning %profit on saleseraser0.490.2
01/07/20161pen24.52.22.34.52.32.251.151.1ink1.250.65
01/07/20162pencil10.350.10.254.752.552.371.452.6marker0.990.4
01/07/20163ruler21.50.60.95.653.452.960.054.3pen2.251.1
02/07/20164scissors26.983.63.389.036.836.548.451.2pencil0.350.1
02/07/20165stapler12.491.21.2910.328.127.751.851.3ruler0.750.3
02/07/20166string32.971.051.9212.2410.048.7564.653.4scissors3.491.8
03/07/20167tape22.981.51.4813.7211.5210.2549.752.9stapler2.491.2
03/07/20168eraser31.470.60.8714.5912.3910.8559.253.3string0.990.35
03/07/20169ink33.751.951.816.3914.1912.848.052.6tape1.490.75
04/07/201610marker32.971.21.7718.1615.961459.653.3
04/07/201611pen36.753.33.4521.6119.4117.351.152.9
04/07/201612pencil20.70.20.522.1119.9117.571.453.2
05/07/201613ruler21.50.60.923.0120.8118.160.053.5SALES
05/07/201614scissors26.983.63.3826.3924.1921.748.452.701/07/201608/07/2016
05/07/201615stapler12.491.21.2927.6825.4822.951.852.707/07/201614/07/2016
06/07/201616string21.980.71.2828.9626.7623.664.653.1eraser54
06/07/201617tape11.490.750.7429.727.524.3549.753.0ink53
06/07/201618eraser20.980.40.5830.2828.0824.7559.253.2marker63
07/07/201619ink22.51.31.231.4829.2826.0548.052.9pen64
07/07/201620marker32.971.21.7733.2531.0527.2559.653.3pencil35
07/07/201621pen12.251.11.1534.432.228.3551.153.2ruler45
08/07/201622pencil31.050.30.7535.1532.9528.6571.453.5scissors45
08/07/201623ruler21.50.60.936.0533.8529.2560.053.6stapler22
08/07/201624scissors26.983.63.3839.4337.2332.8548.453.1string53
09/07/201625stapler12.491.21.2940.7238.5234.0551.853.1tape34
09/07/201626string10.990.350.6441.3639.1634.464.653.2
09/07/201627tape22.981.51.4842.8440.6435.949.753.1
10/07/201628eraser10.490.20.2943.1340.9336.159.253.1
10/07/201629ink22.51.31.244.3342.1337.448.053.0
10/07/201630marker10.990.40.5944.9242.7237.859.653.1
11/07/201631pen12.251.11.1546.0743.8738.951.153.0THIS ANALYSIS TABLE CAN BE AS DETAILED AS YOU LIKE
11/07/201632pencil10.350.10.2546.3244.123971.453.1
11/07/201633ruler32.250.91.3547.6745.4739.960.053.3
12/07/201634scissors310.475.45.0752.7450.5445.348.452.7
12/07/201635stapler12.491.21.2954.0351.8346.551.852.7
12/07/201636string21.980.71.2855.3153.1147.264.652.9
13/07/201637tape22.981.51.4856.7954.5948.749.752.9
13/07/201638eraser31.470.60.8757.6655.4649.359.252.9
13/07/201639ink11.250.650.658.2656.0649.9548.052.9
14/07/201640marker21.980.81.1859.4457.2450.7559.653.0
14/07/201641pen36.753.33.4562.8960.6954.0551.152.9
14/07/201642pencil10.350.10.2563.1460.9454.1571.452.9

<colgroup><col><col span="6"><col><col span="3"><col><col><col><col span="2"><col span="3"></colgroup><tbody>
</tbody>
 
Upvote 0

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Looks great. Thank you.

Sales are very small, up to 30 items a day it is treated as hobby for now as I have full time job.

How do I incorporate formulas? I copied it all in the spreadsheet.
 
Upvote 0
your lookup table lists everything you sell, sith sale price and cost price

so when you type "pencil" into A1 in B1 the formula is =vlookup(A1, mytable,2)
in C1 it is the same with 3 at the end instead of 2

profit is obviously =B1-C1

the analysis table uses sumproduct together with match to analyse by time period and sale item

I suggest you put it together and come back if you get stuck....

MODERATORS - is it permissible to send the OP a working spreadsheet, please ?
 
Upvote 0
I have date in A
sale # in B
Item = C
How many = D
Sale price = E
Cost Price= F
Profit = G
Running Sale price = H



Does this formula need to be in E2? =vlookup(A1, mytable,2)
If yes, I'm guessing A1 will be C2
but I dont understand what is mytable and number 2 and how do I create it
 
Upvote 0
your E and F (sale price and cost price) are obtained from the lookup.

so e2 =Vlookup(c2,mytable,2)
ans F2 = vlookup (c2, mytable,3)

mytable is just a list of ALL your products say in col M, with sale prices and cost prices in cols N and O
highlight M1 to O100 and insert, name, define as mytable, ok

the 2 is which column to bring the answer from ie col N
use 3 = col O for the cost price
 
Upvote 0
your E and F (sale price and cost price) are obtained from the lookup.

so e2 =Vlookup(c2,mytable,2)
ans F2 = vlookup (c2, mytable,3)

mytable is just a list of ALL your products say in col M, with sale prices and cost prices in cols N and O
highlight M1 to O100 and insert, name, define as mytable, ok

the 2 is which column to bring the answer from ie col N
use 3 = col O for the cost price


image.jpg



Ok, what am I doing wrong? I've been trying to solve the problem. I think I'm not selecting the right table or something.
 
Upvote 0
do the lookup table, then put in just one sale of a stapler
do you get the sale price and cost of a stapler ?

you dont select a lookup table - you just lookup a value against the lookup table
 
Upvote 0
I give up oldbrewer. :))

Excel is not my thing, perhaps I should stick to manual data entry. I just can't make it work.


Thanks for your trouble anyway.
 
Upvote 0
I suggest you start with more simpler things to begin with. You said in Post #1 you had never created formulas or Vba scripting. I would start out doing small things and learn more from this forum. We all have to learn to ride a tricycle then a bike and then a car and then a Sports car. What your asking for here is like trying to drive a Sports car. This forum can help you but were not able to do it all for you. Take care and do not give up.
I give up oldbrewer. :))

Excel is not my thing, perhaps I should stick to manual data entry. I just can't make it work.


Thanks for your trouble anyway.
 
Upvote 0
in G1 to G3 put green, red yellow
in H1 to H3 put 75,34,22
highlight G1:H3
insert,name,mytable
in A1 put red
in a2 put =vlookup(a1,mytable 2)
you should see 34

report success and I will guide you through more steps to develop what you want

MODERATORS - can I send the OP a kind of blueprint spreadsheet please ?
 
Upvote 0

Forum statistics

Threads
1,221,455
Messages
6,159,951
Members
451,606
Latest member
ephemeruh

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