Excel 2016 if Cell E2 = “QTR1” or “QTR2” etc… (drop down list) get data from Sheet'name' cell F9
I have workbook with one tab used to get data from 14 different tabs, each tab has a column QTR1, QTR2, QTR3, QTR4. These columns have questions in A1 to A29.
I have 14 areas add data into their tab each quarter. On the main TAB I would like to have a drop down list in CELL E2. When this changes it grabs the QTR1, 2, 3 or 4 data from each of the 14 other tabs and places them in the correct columns on the first tab.
I was thinking if I do a simple IF
statement in each cell =IF(E2="QTR1"
THEN F4 OF MAIN TAB = "Albatross F4). I would then just change the cell or tab ranges to suit = long and not the best but it seems to be the easiest solution without using too many formulas that no-one will understand.
Don't know if VLOOKUP
or HLOOKUP
up would work as I am trying to copy a cell from one tab to the main on dependent on cell E2.
How do I add my workbook for you to see?
microsoft-excel
add a comment |
I have workbook with one tab used to get data from 14 different tabs, each tab has a column QTR1, QTR2, QTR3, QTR4. These columns have questions in A1 to A29.
I have 14 areas add data into their tab each quarter. On the main TAB I would like to have a drop down list in CELL E2. When this changes it grabs the QTR1, 2, 3 or 4 data from each of the 14 other tabs and places them in the correct columns on the first tab.
I was thinking if I do a simple IF
statement in each cell =IF(E2="QTR1"
THEN F4 OF MAIN TAB = "Albatross F4). I would then just change the cell or tab ranges to suit = long and not the best but it seems to be the easiest solution without using too many formulas that no-one will understand.
Don't know if VLOOKUP
or HLOOKUP
up would work as I am trying to copy a cell from one tab to the main on dependent on cell E2.
How do I add my workbook for you to see?
microsoft-excel
add a comment |
I have workbook with one tab used to get data from 14 different tabs, each tab has a column QTR1, QTR2, QTR3, QTR4. These columns have questions in A1 to A29.
I have 14 areas add data into their tab each quarter. On the main TAB I would like to have a drop down list in CELL E2. When this changes it grabs the QTR1, 2, 3 or 4 data from each of the 14 other tabs and places them in the correct columns on the first tab.
I was thinking if I do a simple IF
statement in each cell =IF(E2="QTR1"
THEN F4 OF MAIN TAB = "Albatross F4). I would then just change the cell or tab ranges to suit = long and not the best but it seems to be the easiest solution without using too many formulas that no-one will understand.
Don't know if VLOOKUP
or HLOOKUP
up would work as I am trying to copy a cell from one tab to the main on dependent on cell E2.
How do I add my workbook for you to see?
microsoft-excel
I have workbook with one tab used to get data from 14 different tabs, each tab has a column QTR1, QTR2, QTR3, QTR4. These columns have questions in A1 to A29.
I have 14 areas add data into their tab each quarter. On the main TAB I would like to have a drop down list in CELL E2. When this changes it grabs the QTR1, 2, 3 or 4 data from each of the 14 other tabs and places them in the correct columns on the first tab.
I was thinking if I do a simple IF
statement in each cell =IF(E2="QTR1"
THEN F4 OF MAIN TAB = "Albatross F4). I would then just change the cell or tab ranges to suit = long and not the best but it seems to be the easiest solution without using too many formulas that no-one will understand.
Don't know if VLOOKUP
or HLOOKUP
up would work as I am trying to copy a cell from one tab to the main on dependent on cell E2.
How do I add my workbook for you to see?
microsoft-excel
microsoft-excel
edited Feb 16 at 13:44
Blackwood
2,89671728
2,89671728
asked Feb 16 at 7:23
michael loringmichael loring
1
1
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I have worked out this formula it works, is there an easier way to do this?
=IF(E2="QTR 1",' Albatross 2019'!F4, IF(E2="QTR 2",' Albatross 2019'!I4, IF(E2="QTR 3",' Albatross 2019'!L4, IF(E2="QTR 4",' Albatross 2019'!O4))))
It work, I just have to edit all of the cells to reference the correct TABs and Cell values, so its ok, clunky but at least it works.
Thanks for reading. If you have a better way, I am all eyes and ears.....
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',
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%2f1406392%2fexcel-2016-if-cell-e2-qtr1-or-qtr2-etc-drop-down-list-get-data-from%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
I have worked out this formula it works, is there an easier way to do this?
=IF(E2="QTR 1",' Albatross 2019'!F4, IF(E2="QTR 2",' Albatross 2019'!I4, IF(E2="QTR 3",' Albatross 2019'!L4, IF(E2="QTR 4",' Albatross 2019'!O4))))
It work, I just have to edit all of the cells to reference the correct TABs and Cell values, so its ok, clunky but at least it works.
Thanks for reading. If you have a better way, I am all eyes and ears.....
add a comment |
I have worked out this formula it works, is there an easier way to do this?
=IF(E2="QTR 1",' Albatross 2019'!F4, IF(E2="QTR 2",' Albatross 2019'!I4, IF(E2="QTR 3",' Albatross 2019'!L4, IF(E2="QTR 4",' Albatross 2019'!O4))))
It work, I just have to edit all of the cells to reference the correct TABs and Cell values, so its ok, clunky but at least it works.
Thanks for reading. If you have a better way, I am all eyes and ears.....
add a comment |
I have worked out this formula it works, is there an easier way to do this?
=IF(E2="QTR 1",' Albatross 2019'!F4, IF(E2="QTR 2",' Albatross 2019'!I4, IF(E2="QTR 3",' Albatross 2019'!L4, IF(E2="QTR 4",' Albatross 2019'!O4))))
It work, I just have to edit all of the cells to reference the correct TABs and Cell values, so its ok, clunky but at least it works.
Thanks for reading. If you have a better way, I am all eyes and ears.....
I have worked out this formula it works, is there an easier way to do this?
=IF(E2="QTR 1",' Albatross 2019'!F4, IF(E2="QTR 2",' Albatross 2019'!I4, IF(E2="QTR 3",' Albatross 2019'!L4, IF(E2="QTR 4",' Albatross 2019'!O4))))
It work, I just have to edit all of the cells to reference the correct TABs and Cell values, so its ok, clunky but at least it works.
Thanks for reading. If you have a better way, I am all eyes and ears.....
answered Feb 16 at 8:46
michael loringmichael loring
1
1
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.
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%2f1406392%2fexcel-2016-if-cell-e2-qtr1-or-qtr2-etc-drop-down-list-get-data-from%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