Excel Formula Checking multiple cells across the columns
I would like a formula that compare the column B, D, F and puts in Column H if a computer has only office 2007 or both 2007 & 2010 or 2007 and 2013, etc... Any help is greatly appreciated.
Excel Layout for Question:
excel formula
add a comment |
I would like a formula that compare the column B, D, F and puts in Column H if a computer has only office 2007 or both 2007 & 2010 or 2007 and 2013, etc... Any help is greatly appreciated.
Excel Layout for Question:
excel formula
Can you please edit your question to let us know what you've tried so far?
– cybernetic.nomad
Nov 14 '18 at 21:03
add a comment |
I would like a formula that compare the column B, D, F and puts in Column H if a computer has only office 2007 or both 2007 & 2010 or 2007 and 2013, etc... Any help is greatly appreciated.
Excel Layout for Question:
excel formula
I would like a formula that compare the column B, D, F and puts in Column H if a computer has only office 2007 or both 2007 & 2010 or 2007 and 2013, etc... Any help is greatly appreciated.
Excel Layout for Question:
excel formula
excel formula
edited Nov 14 '18 at 21:56
BruceWayne
17.6k113060
17.6k113060
asked Nov 14 '18 at 20:51
Cory FreemanCory Freeman
42
42
Can you please edit your question to let us know what you've tried so far?
– cybernetic.nomad
Nov 14 '18 at 21:03
add a comment |
Can you please edit your question to let us know what you've tried so far?
– cybernetic.nomad
Nov 14 '18 at 21:03
Can you please edit your question to let us know what you've tried so far?
– cybernetic.nomad
Nov 14 '18 at 21:03
Can you please edit your question to let us know what you've tried so far?
– cybernetic.nomad
Nov 14 '18 at 21:03
add a comment |
1 Answer
1
active
oldest
votes
Try this:
=SUBSTITUTE(IF(NOT(ISBLANK(B2)),2007,"")&" "&IF(NOT(ISBLANK(D2)),2010,"")&" "&IF(NOT(ISBLANK(F2)),2013,"")," "," ")
If you know the exact values that will appear in columns B
, D
and F
, you can try:
=SUBSTITUTE(IF(B2="Microsoft Office Professional Plus 2007",2007,"")&" "&IF(D2="Microsoft Office Professional Plus 2010",2010,"")&" "&IF(F2="Microsoft Office Professional Plus 2013",2013,"")," "," ")
I think maybe close, but weather the cell is blank or not it just shows in Column H 2007 2010 2013 regardless if something in the cell or not.
– Cory Freeman
Nov 15 '18 at 12:56
Are you sure the cell is blank and doesn't contain a space or other invisible character?
– cybernetic.nomad
Nov 15 '18 at 14:58
I am pulling from another sheet, and I am putting nothing there but probably not "blank" how get around that? Example B2 has a vlookup arrary =IFERROR(VLOOKUP(A2,'2007'!A:F,{5,6},FALSE),"")
– Cory Freeman
Nov 15 '18 at 17:29
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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%2fstackoverflow.com%2fquestions%2f53308529%2fexcel-formula-checking-multiple-cells-across-the-columns%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
Try this:
=SUBSTITUTE(IF(NOT(ISBLANK(B2)),2007,"")&" "&IF(NOT(ISBLANK(D2)),2010,"")&" "&IF(NOT(ISBLANK(F2)),2013,"")," "," ")
If you know the exact values that will appear in columns B
, D
and F
, you can try:
=SUBSTITUTE(IF(B2="Microsoft Office Professional Plus 2007",2007,"")&" "&IF(D2="Microsoft Office Professional Plus 2010",2010,"")&" "&IF(F2="Microsoft Office Professional Plus 2013",2013,"")," "," ")
I think maybe close, but weather the cell is blank or not it just shows in Column H 2007 2010 2013 regardless if something in the cell or not.
– Cory Freeman
Nov 15 '18 at 12:56
Are you sure the cell is blank and doesn't contain a space or other invisible character?
– cybernetic.nomad
Nov 15 '18 at 14:58
I am pulling from another sheet, and I am putting nothing there but probably not "blank" how get around that? Example B2 has a vlookup arrary =IFERROR(VLOOKUP(A2,'2007'!A:F,{5,6},FALSE),"")
– Cory Freeman
Nov 15 '18 at 17:29
add a comment |
Try this:
=SUBSTITUTE(IF(NOT(ISBLANK(B2)),2007,"")&" "&IF(NOT(ISBLANK(D2)),2010,"")&" "&IF(NOT(ISBLANK(F2)),2013,"")," "," ")
If you know the exact values that will appear in columns B
, D
and F
, you can try:
=SUBSTITUTE(IF(B2="Microsoft Office Professional Plus 2007",2007,"")&" "&IF(D2="Microsoft Office Professional Plus 2010",2010,"")&" "&IF(F2="Microsoft Office Professional Plus 2013",2013,"")," "," ")
I think maybe close, but weather the cell is blank or not it just shows in Column H 2007 2010 2013 regardless if something in the cell or not.
– Cory Freeman
Nov 15 '18 at 12:56
Are you sure the cell is blank and doesn't contain a space or other invisible character?
– cybernetic.nomad
Nov 15 '18 at 14:58
I am pulling from another sheet, and I am putting nothing there but probably not "blank" how get around that? Example B2 has a vlookup arrary =IFERROR(VLOOKUP(A2,'2007'!A:F,{5,6},FALSE),"")
– Cory Freeman
Nov 15 '18 at 17:29
add a comment |
Try this:
=SUBSTITUTE(IF(NOT(ISBLANK(B2)),2007,"")&" "&IF(NOT(ISBLANK(D2)),2010,"")&" "&IF(NOT(ISBLANK(F2)),2013,"")," "," ")
If you know the exact values that will appear in columns B
, D
and F
, you can try:
=SUBSTITUTE(IF(B2="Microsoft Office Professional Plus 2007",2007,"")&" "&IF(D2="Microsoft Office Professional Plus 2010",2010,"")&" "&IF(F2="Microsoft Office Professional Plus 2013",2013,"")," "," ")
Try this:
=SUBSTITUTE(IF(NOT(ISBLANK(B2)),2007,"")&" "&IF(NOT(ISBLANK(D2)),2010,"")&" "&IF(NOT(ISBLANK(F2)),2013,"")," "," ")
If you know the exact values that will appear in columns B
, D
and F
, you can try:
=SUBSTITUTE(IF(B2="Microsoft Office Professional Plus 2007",2007,"")&" "&IF(D2="Microsoft Office Professional Plus 2010",2010,"")&" "&IF(F2="Microsoft Office Professional Plus 2013",2013,"")," "," ")
edited Nov 15 '18 at 17:36
answered Nov 14 '18 at 22:49
cybernetic.nomadcybernetic.nomad
2,35821020
2,35821020
I think maybe close, but weather the cell is blank or not it just shows in Column H 2007 2010 2013 regardless if something in the cell or not.
– Cory Freeman
Nov 15 '18 at 12:56
Are you sure the cell is blank and doesn't contain a space or other invisible character?
– cybernetic.nomad
Nov 15 '18 at 14:58
I am pulling from another sheet, and I am putting nothing there but probably not "blank" how get around that? Example B2 has a vlookup arrary =IFERROR(VLOOKUP(A2,'2007'!A:F,{5,6},FALSE),"")
– Cory Freeman
Nov 15 '18 at 17:29
add a comment |
I think maybe close, but weather the cell is blank or not it just shows in Column H 2007 2010 2013 regardless if something in the cell or not.
– Cory Freeman
Nov 15 '18 at 12:56
Are you sure the cell is blank and doesn't contain a space or other invisible character?
– cybernetic.nomad
Nov 15 '18 at 14:58
I am pulling from another sheet, and I am putting nothing there but probably not "blank" how get around that? Example B2 has a vlookup arrary =IFERROR(VLOOKUP(A2,'2007'!A:F,{5,6},FALSE),"")
– Cory Freeman
Nov 15 '18 at 17:29
I think maybe close, but weather the cell is blank or not it just shows in Column H 2007 2010 2013 regardless if something in the cell or not.
– Cory Freeman
Nov 15 '18 at 12:56
I think maybe close, but weather the cell is blank or not it just shows in Column H 2007 2010 2013 regardless if something in the cell or not.
– Cory Freeman
Nov 15 '18 at 12:56
Are you sure the cell is blank and doesn't contain a space or other invisible character?
– cybernetic.nomad
Nov 15 '18 at 14:58
Are you sure the cell is blank and doesn't contain a space or other invisible character?
– cybernetic.nomad
Nov 15 '18 at 14:58
I am pulling from another sheet, and I am putting nothing there but probably not "blank" how get around that? Example B2 has a vlookup arrary =IFERROR(VLOOKUP(A2,'2007'!A:F,{5,6},FALSE),"")
– Cory Freeman
Nov 15 '18 at 17:29
I am pulling from another sheet, and I am putting nothing there but probably not "blank" how get around that? Example B2 has a vlookup arrary =IFERROR(VLOOKUP(A2,'2007'!A:F,{5,6},FALSE),"")
– Cory Freeman
Nov 15 '18 at 17:29
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f53308529%2fexcel-formula-checking-multiple-cells-across-the-columns%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
Can you please edit your question to let us know what you've tried so far?
– cybernetic.nomad
Nov 14 '18 at 21:03