Excel auto populate DATE from one worksheet to another in same workbook
up vote
1
down vote
favorite
I really hope someone can help me with this. I'm getting super frustrated.
I have a specific cell (F3) on sheet1 that I'm using the DATE function to show a specific date (not the current date). I want to be able to type that date into that cell and have it auto populate the same date in a different cell on another worksheet (sheet5). Everything I have read refers to a range or array or table. I need a specific cell to populate that data to a specific cell on another worksheet in the same workbook.
Can someone please help me. The concept seems pretty straight forward but all the answers I've seen are soooooooo freakin complicated. Simple issue=simple solution. Or am I wrong?
microsoft-excel worksheet-function
add a comment |
up vote
1
down vote
favorite
I really hope someone can help me with this. I'm getting super frustrated.
I have a specific cell (F3) on sheet1 that I'm using the DATE function to show a specific date (not the current date). I want to be able to type that date into that cell and have it auto populate the same date in a different cell on another worksheet (sheet5). Everything I have read refers to a range or array or table. I need a specific cell to populate that data to a specific cell on another worksheet in the same workbook.
Can someone please help me. The concept seems pretty straight forward but all the answers I've seen are soooooooo freakin complicated. Simple issue=simple solution. Or am I wrong?
microsoft-excel worksheet-function
Isn't this just a matter of putting=sheet1!F3
into the cell on sheet5? If not, explain better. Please do not respond in comments; edit your question to make it clearer and more complete.
– G-Man
Jan 14 '17 at 4:28
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I really hope someone can help me with this. I'm getting super frustrated.
I have a specific cell (F3) on sheet1 that I'm using the DATE function to show a specific date (not the current date). I want to be able to type that date into that cell and have it auto populate the same date in a different cell on another worksheet (sheet5). Everything I have read refers to a range or array or table. I need a specific cell to populate that data to a specific cell on another worksheet in the same workbook.
Can someone please help me. The concept seems pretty straight forward but all the answers I've seen are soooooooo freakin complicated. Simple issue=simple solution. Or am I wrong?
microsoft-excel worksheet-function
I really hope someone can help me with this. I'm getting super frustrated.
I have a specific cell (F3) on sheet1 that I'm using the DATE function to show a specific date (not the current date). I want to be able to type that date into that cell and have it auto populate the same date in a different cell on another worksheet (sheet5). Everything I have read refers to a range or array or table. I need a specific cell to populate that data to a specific cell on another worksheet in the same workbook.
Can someone please help me. The concept seems pretty straight forward but all the answers I've seen are soooooooo freakin complicated. Simple issue=simple solution. Or am I wrong?
microsoft-excel worksheet-function
microsoft-excel worksheet-function
asked Jan 13 '17 at 22:33
Nick S
612
612
Isn't this just a matter of putting=sheet1!F3
into the cell on sheet5? If not, explain better. Please do not respond in comments; edit your question to make it clearer and more complete.
– G-Man
Jan 14 '17 at 4:28
add a comment |
Isn't this just a matter of putting=sheet1!F3
into the cell on sheet5? If not, explain better. Please do not respond in comments; edit your question to make it clearer and more complete.
– G-Man
Jan 14 '17 at 4:28
Isn't this just a matter of putting
=sheet1!F3
into the cell on sheet5? If not, explain better. Please do not respond in comments; edit your question to make it clearer and more complete.– G-Man
Jan 14 '17 at 4:28
Isn't this just a matter of putting
=sheet1!F3
into the cell on sheet5? If not, explain better. Please do not respond in comments; edit your question to make it clearer and more complete.– G-Man
Jan 14 '17 at 4:28
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
So I finally figured it out. And yes. It was a very simple solution to a very simple problem. I'm not sure if it's the fact that I'm using Office 365 or what not but I got it to do what I wanted it to do.
Original issue: I couldn't figure out how to link cells between worksheets in the same workbook so that the info in let's say cell F3 on sheet 1 of the workbook would automatically show up in different cell on another sheet in the same workbook.
Solution: since typing =sheet1!F3 in the cell didn't work like everything I've read said it should. Apparently I needed to add a single apostrophe before/after the sheet name and number. Example: ='sheet1'!F3
Here's a link to a youtube video I found that explains it very simply as well as shows you how to link cells from different workbooks as well. I hope this helps everyone. Link Cells In Different Excel Worksheets
add a comment |
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',
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%2f1167063%2fexcel-auto-populate-date-from-one-worksheet-to-another-in-same-workbook%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
So I finally figured it out. And yes. It was a very simple solution to a very simple problem. I'm not sure if it's the fact that I'm using Office 365 or what not but I got it to do what I wanted it to do.
Original issue: I couldn't figure out how to link cells between worksheets in the same workbook so that the info in let's say cell F3 on sheet 1 of the workbook would automatically show up in different cell on another sheet in the same workbook.
Solution: since typing =sheet1!F3 in the cell didn't work like everything I've read said it should. Apparently I needed to add a single apostrophe before/after the sheet name and number. Example: ='sheet1'!F3
Here's a link to a youtube video I found that explains it very simply as well as shows you how to link cells from different workbooks as well. I hope this helps everyone. Link Cells In Different Excel Worksheets
add a comment |
up vote
0
down vote
So I finally figured it out. And yes. It was a very simple solution to a very simple problem. I'm not sure if it's the fact that I'm using Office 365 or what not but I got it to do what I wanted it to do.
Original issue: I couldn't figure out how to link cells between worksheets in the same workbook so that the info in let's say cell F3 on sheet 1 of the workbook would automatically show up in different cell on another sheet in the same workbook.
Solution: since typing =sheet1!F3 in the cell didn't work like everything I've read said it should. Apparently I needed to add a single apostrophe before/after the sheet name and number. Example: ='sheet1'!F3
Here's a link to a youtube video I found that explains it very simply as well as shows you how to link cells from different workbooks as well. I hope this helps everyone. Link Cells In Different Excel Worksheets
add a comment |
up vote
0
down vote
up vote
0
down vote
So I finally figured it out. And yes. It was a very simple solution to a very simple problem. I'm not sure if it's the fact that I'm using Office 365 or what not but I got it to do what I wanted it to do.
Original issue: I couldn't figure out how to link cells between worksheets in the same workbook so that the info in let's say cell F3 on sheet 1 of the workbook would automatically show up in different cell on another sheet in the same workbook.
Solution: since typing =sheet1!F3 in the cell didn't work like everything I've read said it should. Apparently I needed to add a single apostrophe before/after the sheet name and number. Example: ='sheet1'!F3
Here's a link to a youtube video I found that explains it very simply as well as shows you how to link cells from different workbooks as well. I hope this helps everyone. Link Cells In Different Excel Worksheets
So I finally figured it out. And yes. It was a very simple solution to a very simple problem. I'm not sure if it's the fact that I'm using Office 365 or what not but I got it to do what I wanted it to do.
Original issue: I couldn't figure out how to link cells between worksheets in the same workbook so that the info in let's say cell F3 on sheet 1 of the workbook would automatically show up in different cell on another sheet in the same workbook.
Solution: since typing =sheet1!F3 in the cell didn't work like everything I've read said it should. Apparently I needed to add a single apostrophe before/after the sheet name and number. Example: ='sheet1'!F3
Here's a link to a youtube video I found that explains it very simply as well as shows you how to link cells from different workbooks as well. I hope this helps everyone. Link Cells In Different Excel Worksheets
answered Jan 15 '17 at 0:15
Nick S
612
612
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f1167063%2fexcel-auto-populate-date-from-one-worksheet-to-another-in-same-workbook%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
Isn't this just a matter of putting
=sheet1!F3
into the cell on sheet5? If not, explain better. Please do not respond in comments; edit your question to make it clearer and more complete.– G-Man
Jan 14 '17 at 4:28