How to sum up products like this?
I am creating a spreadsheet to keep track of large expenses. The idea is that I virtually finance things rather than actually do it that way when budgeting.
The idea is that if I make a large purchase I can spread out its cost over a certain amount of months, mentally.
The first part of this is the following table and I cant quite figure out how to do it.
So just to walk you through the math a bit I bought a headlamp on 12/12/18 and wish to “finance” it over 4 months. This means that 4*30 days after 12/12/18 I will have paid it off. In the meantime I will be spending 0.42$ every day to meet this goal.
I also have a stitch fix order that I wish to “finance” over 6 months meaning that after 12/11/18 I will need to be spending 0.43$ towards its cost.
So this then brings me to the chart data table. The goal of this table is to help me visualize things over time. The debt table should allow me to create a graph where new purchases cause spikes that overall go down over time.
The weekly costs table would keep track of the accumulated “price per day” costs for the week in question. You can imagine when a new thing is purchased it creates a small spike that moves out over multiple months.
So onto the formulas. The debt one is fairly simple. Given a date d
for each expense on datee
with c
daily cost and m
total cost sum up the following formula m-clamp((e-d),0,inf)*c
to get your value. The problem is that as you can see from the screenshot I have no idea how to do this form of formula in Numbers.
The weekly cost is a bit trickier. Given a start dated1
and an end date d2
and an expense on date e
of daily cost c
and m
total cost financing over period p
first calculate the number of days you are paying expenses for using the following variables
Start = clamp(e-d1,0,inf)
End = clamp(d2-(e+p*30),0,inf)
Days = (d2-d1)-Start-End
Then your amount for that period of time is simply Days*c
however again this is not a formula I know how to express in Numbers.
Can anyone help me out here?
spreadsheet iwork-numbers
add a comment |
I am creating a spreadsheet to keep track of large expenses. The idea is that I virtually finance things rather than actually do it that way when budgeting.
The idea is that if I make a large purchase I can spread out its cost over a certain amount of months, mentally.
The first part of this is the following table and I cant quite figure out how to do it.
So just to walk you through the math a bit I bought a headlamp on 12/12/18 and wish to “finance” it over 4 months. This means that 4*30 days after 12/12/18 I will have paid it off. In the meantime I will be spending 0.42$ every day to meet this goal.
I also have a stitch fix order that I wish to “finance” over 6 months meaning that after 12/11/18 I will need to be spending 0.43$ towards its cost.
So this then brings me to the chart data table. The goal of this table is to help me visualize things over time. The debt table should allow me to create a graph where new purchases cause spikes that overall go down over time.
The weekly costs table would keep track of the accumulated “price per day” costs for the week in question. You can imagine when a new thing is purchased it creates a small spike that moves out over multiple months.
So onto the formulas. The debt one is fairly simple. Given a date d
for each expense on datee
with c
daily cost and m
total cost sum up the following formula m-clamp((e-d),0,inf)*c
to get your value. The problem is that as you can see from the screenshot I have no idea how to do this form of formula in Numbers.
The weekly cost is a bit trickier. Given a start dated1
and an end date d2
and an expense on date e
of daily cost c
and m
total cost financing over period p
first calculate the number of days you are paying expenses for using the following variables
Start = clamp(e-d1,0,inf)
End = clamp(d2-(e+p*30),0,inf)
Days = (d2-d1)-Start-End
Then your amount for that period of time is simply Days*c
however again this is not a formula I know how to express in Numbers.
Can anyone help me out here?
spreadsheet iwork-numbers
add a comment |
I am creating a spreadsheet to keep track of large expenses. The idea is that I virtually finance things rather than actually do it that way when budgeting.
The idea is that if I make a large purchase I can spread out its cost over a certain amount of months, mentally.
The first part of this is the following table and I cant quite figure out how to do it.
So just to walk you through the math a bit I bought a headlamp on 12/12/18 and wish to “finance” it over 4 months. This means that 4*30 days after 12/12/18 I will have paid it off. In the meantime I will be spending 0.42$ every day to meet this goal.
I also have a stitch fix order that I wish to “finance” over 6 months meaning that after 12/11/18 I will need to be spending 0.43$ towards its cost.
So this then brings me to the chart data table. The goal of this table is to help me visualize things over time. The debt table should allow me to create a graph where new purchases cause spikes that overall go down over time.
The weekly costs table would keep track of the accumulated “price per day” costs for the week in question. You can imagine when a new thing is purchased it creates a small spike that moves out over multiple months.
So onto the formulas. The debt one is fairly simple. Given a date d
for each expense on datee
with c
daily cost and m
total cost sum up the following formula m-clamp((e-d),0,inf)*c
to get your value. The problem is that as you can see from the screenshot I have no idea how to do this form of formula in Numbers.
The weekly cost is a bit trickier. Given a start dated1
and an end date d2
and an expense on date e
of daily cost c
and m
total cost financing over period p
first calculate the number of days you are paying expenses for using the following variables
Start = clamp(e-d1,0,inf)
End = clamp(d2-(e+p*30),0,inf)
Days = (d2-d1)-Start-End
Then your amount for that period of time is simply Days*c
however again this is not a formula I know how to express in Numbers.
Can anyone help me out here?
spreadsheet iwork-numbers
I am creating a spreadsheet to keep track of large expenses. The idea is that I virtually finance things rather than actually do it that way when budgeting.
The idea is that if I make a large purchase I can spread out its cost over a certain amount of months, mentally.
The first part of this is the following table and I cant quite figure out how to do it.
So just to walk you through the math a bit I bought a headlamp on 12/12/18 and wish to “finance” it over 4 months. This means that 4*30 days after 12/12/18 I will have paid it off. In the meantime I will be spending 0.42$ every day to meet this goal.
I also have a stitch fix order that I wish to “finance” over 6 months meaning that after 12/11/18 I will need to be spending 0.43$ towards its cost.
So this then brings me to the chart data table. The goal of this table is to help me visualize things over time. The debt table should allow me to create a graph where new purchases cause spikes that overall go down over time.
The weekly costs table would keep track of the accumulated “price per day” costs for the week in question. You can imagine when a new thing is purchased it creates a small spike that moves out over multiple months.
So onto the formulas. The debt one is fairly simple. Given a date d
for each expense on datee
with c
daily cost and m
total cost sum up the following formula m-clamp((e-d),0,inf)*c
to get your value. The problem is that as you can see from the screenshot I have no idea how to do this form of formula in Numbers.
The weekly cost is a bit trickier. Given a start dated1
and an end date d2
and an expense on date e
of daily cost c
and m
total cost financing over period p
first calculate the number of days you are paying expenses for using the following variables
Start = clamp(e-d1,0,inf)
End = clamp(d2-(e+p*30),0,inf)
Days = (d2-d1)-Start-End
Then your amount for that period of time is simply Days*c
however again this is not a formula I know how to express in Numbers.
Can anyone help me out here?
spreadsheet iwork-numbers
spreadsheet iwork-numbers
asked Jan 24 at 0:18
J.DoeJ.Doe
12615
12615
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1397697%2fhow-to-sum-up-products-like-this%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1397697%2fhow-to-sum-up-products-like-this%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown