This syntax is not working in my excel formula
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
=IF(AND($D10=5,$G10>=3),"IV"),IF(AND($D10=4,$G10>=4),"IV"),IF(AND(OR($D10=3,$D10=2),$G10=5),"IV"),IF(AND($D10=5, $G10<=2),"III"),IF(AND(OR($G10=3,$G10=2),$D10=4),"III"),IF(AND(OR($G10=3,$G10=4),$D10=3),"III"),IF(AND($D10=2,$G10=4),"III"),IF(AND($D10=3, $G10<=2),"II"),IF(AND(OR($G10=3,$G10=2),$D10=2),"II"),IF(AND($D10=4,$G10=1),"II"),IF(AND($D10=1,$G10>=3),"II"),"I")
To accomplish this
If columns (D,G)=(5,5),(5,4),(5,3),(4,5),(4,4),(3,5) and (2,5)
then assign IV
If columns (D,G)=(5,2),(5,1),(4,3),(4,2),(3,4), (3,3) and (2,4)
then assign III
If columns (D,G)=IV(4,1),(3,2),(3,1),(2,3),(2,2),(1,5),(1,4) and (1,3)
then assign II
If columns (D,G)=(2,1), (1,2) and (1,1)
then assign I
microsoft-excel-2016
add a comment |
=IF(AND($D10=5,$G10>=3),"IV"),IF(AND($D10=4,$G10>=4),"IV"),IF(AND(OR($D10=3,$D10=2),$G10=5),"IV"),IF(AND($D10=5, $G10<=2),"III"),IF(AND(OR($G10=3,$G10=2),$D10=4),"III"),IF(AND(OR($G10=3,$G10=4),$D10=3),"III"),IF(AND($D10=2,$G10=4),"III"),IF(AND($D10=3, $G10<=2),"II"),IF(AND(OR($G10=3,$G10=2),$D10=2),"II"),IF(AND($D10=4,$G10=1),"II"),IF(AND($D10=1,$G10>=3),"II"),"I")
To accomplish this
If columns (D,G)=(5,5),(5,4),(5,3),(4,5),(4,4),(3,5) and (2,5)
then assign IV
If columns (D,G)=(5,2),(5,1),(4,3),(4,2),(3,4), (3,3) and (2,4)
then assign III
If columns (D,G)=IV(4,1),(3,2),(3,1),(2,3),(2,2),(1,5),(1,4) and (1,3)
then assign II
If columns (D,G)=(2,1), (1,2) and (1,1)
then assign I
microsoft-excel-2016
1
Welcome to Super User. Your question currently doesn't refer to what you need help with. Please edit your question to make it clear.
– juniorRubyist
Feb 8 at 23:26
add a comment |
=IF(AND($D10=5,$G10>=3),"IV"),IF(AND($D10=4,$G10>=4),"IV"),IF(AND(OR($D10=3,$D10=2),$G10=5),"IV"),IF(AND($D10=5, $G10<=2),"III"),IF(AND(OR($G10=3,$G10=2),$D10=4),"III"),IF(AND(OR($G10=3,$G10=4),$D10=3),"III"),IF(AND($D10=2,$G10=4),"III"),IF(AND($D10=3, $G10<=2),"II"),IF(AND(OR($G10=3,$G10=2),$D10=2),"II"),IF(AND($D10=4,$G10=1),"II"),IF(AND($D10=1,$G10>=3),"II"),"I")
To accomplish this
If columns (D,G)=(5,5),(5,4),(5,3),(4,5),(4,4),(3,5) and (2,5)
then assign IV
If columns (D,G)=(5,2),(5,1),(4,3),(4,2),(3,4), (3,3) and (2,4)
then assign III
If columns (D,G)=IV(4,1),(3,2),(3,1),(2,3),(2,2),(1,5),(1,4) and (1,3)
then assign II
If columns (D,G)=(2,1), (1,2) and (1,1)
then assign I
microsoft-excel-2016
=IF(AND($D10=5,$G10>=3),"IV"),IF(AND($D10=4,$G10>=4),"IV"),IF(AND(OR($D10=3,$D10=2),$G10=5),"IV"),IF(AND($D10=5, $G10<=2),"III"),IF(AND(OR($G10=3,$G10=2),$D10=4),"III"),IF(AND(OR($G10=3,$G10=4),$D10=3),"III"),IF(AND($D10=2,$G10=4),"III"),IF(AND($D10=3, $G10<=2),"II"),IF(AND(OR($G10=3,$G10=2),$D10=2),"II"),IF(AND($D10=4,$G10=1),"II"),IF(AND($D10=1,$G10>=3),"II"),"I")
To accomplish this
If columns (D,G)=(5,5),(5,4),(5,3),(4,5),(4,4),(3,5) and (2,5)
then assign IV
If columns (D,G)=(5,2),(5,1),(4,3),(4,2),(3,4), (3,3) and (2,4)
then assign III
If columns (D,G)=IV(4,1),(3,2),(3,1),(2,3),(2,2),(1,5),(1,4) and (1,3)
then assign II
If columns (D,G)=(2,1), (1,2) and (1,1)
then assign I
microsoft-excel-2016
microsoft-excel-2016
edited Feb 8 at 22:08
cybernetic.nomad
2,882617
2,882617
asked Feb 8 at 21:04
EmmanuelEmmanuel
2
2
1
Welcome to Super User. Your question currently doesn't refer to what you need help with. Please edit your question to make it clear.
– juniorRubyist
Feb 8 at 23:26
add a comment |
1
Welcome to Super User. Your question currently doesn't refer to what you need help with. Please edit your question to make it clear.
– juniorRubyist
Feb 8 at 23:26
1
1
Welcome to Super User. Your question currently doesn't refer to what you need help with. Please edit your question to make it clear.
– juniorRubyist
Feb 8 at 23:26
Welcome to Super User. Your question currently doesn't refer to what you need help with. Please edit your question to make it clear.
– juniorRubyist
Feb 8 at 23:26
add a comment |
3 Answers
3
active
oldest
votes
The question is not clear, but I will guess what you mean.
I think you want to get the results in my column H.
For this, I used in row 10 the formula
=IF(AND($D10=5,$G10>=3),"IV",IF(AND($D10=4,$G10>=4),"IV",IF(AND(OR($D10=3,$D10=2),$G10=5),"IV",IF(AND($D10=5, $G10<=2),"III",IF(AND(OR($G10=3,$G10=2),$D10=4),"III",IF(AND(OR($G10=3,$G10=4),$D10=3),"III",IF(AND($D10=2,$G10=4),"III",IF(AND($D10=3, $G10<=2),"II",IF(AND(OR($G10=3,$G10=2),$D10=2),"II",IF(AND($D10=4,$G10=1),"II",IF(AND($D10=1,$G10>=3),"II","I")))))))))))
(copy-paste in row 11).
In row 12 I used
=INDIRECT("R"&TEXT($G12+row($B$3)-1,"0")&"C"&TEXT($D12+COLUMN($B$3)-1,"0"),FALSE)
which relies on the table above.
None of the formulas check that 1 <= col D,G <= 5, you would have to add that if needed.
add a comment |
If ( OR( (D,G)=(5,5), (D,G)=(5,4), (D,G)=(5,3), (D,G)=(4,5), (D,G)=(4,4), (D,G)=(3,5), (D,G)=(2,5) ), "IV",
If ( OR( (D,G)=(5,2), (D,G)=(5,1), (D,G)=(4,3, (D,G)=(4,2, (D,G)=(3,4, (D,G)=(3,3, (D,G)=(2,4) ), "III",
If columns (D,G)=IV(4,1),(3,2),(3,1),(2,3),(2,2),(1,5),(1,4) and (1,3) then assign II
here you lost me as how to interpret that "IV (4,1)
If ( OR( (D,G)=(2,1, (D,G)=(1,2), (D,G)=(1,1) ), "I","ERR" ) ) ) )
for each set of (D,G)=(5,5) above, put what you have already coded as AND($D10=5,$G10>=3) and so on.
One line is not coded by me due to the lack of clarity about IV, hope you would make that out yourself, or comment below so that I explain further.
However you said above that (D,G)=(5,5), but your formula is testing $D10=5,$G10>=3, that is >= instead of =, such things will give different results.
Why the downvote? Anything wrong in this?
– VSRawat
Feb 9 at 14:54
add a comment |
I'm not entirely sure what you are trying to do, but you need to remove the ")" in front of the "," that is in front of the IF:
=IF(AND($D1=5,$G1>=3),"IV",IF(AND($D1=4,$G1>=4),"IV",IF(AND(OR($D1=3,$D1=2),$G1=5),"IV",IF(AND($D1=5,$G1<=2),"III",IF(AND(OR($G1=3,$G1=2),$D1=4),"III",IF(AND(OR($G1=3,$G1=4),$D1=3),"III",IF(AND($D1=2,$G1=4),"III",IF(AND($D1=3,$G1<=2),"II",IF(AND(OR($G1=3,$G1=2),$D1=2),"II",IF(AND($D1=4,$G1=1),"II",IF(AND($D1=1,$G1>=3),"II","I")))))))))))
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%2f1403676%2fthis-syntax-is-not-working-in-my-excel-formula%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
The question is not clear, but I will guess what you mean.
I think you want to get the results in my column H.
For this, I used in row 10 the formula
=IF(AND($D10=5,$G10>=3),"IV",IF(AND($D10=4,$G10>=4),"IV",IF(AND(OR($D10=3,$D10=2),$G10=5),"IV",IF(AND($D10=5, $G10<=2),"III",IF(AND(OR($G10=3,$G10=2),$D10=4),"III",IF(AND(OR($G10=3,$G10=4),$D10=3),"III",IF(AND($D10=2,$G10=4),"III",IF(AND($D10=3, $G10<=2),"II",IF(AND(OR($G10=3,$G10=2),$D10=2),"II",IF(AND($D10=4,$G10=1),"II",IF(AND($D10=1,$G10>=3),"II","I")))))))))))
(copy-paste in row 11).
In row 12 I used
=INDIRECT("R"&TEXT($G12+row($B$3)-1,"0")&"C"&TEXT($D12+COLUMN($B$3)-1,"0"),FALSE)
which relies on the table above.
None of the formulas check that 1 <= col D,G <= 5, you would have to add that if needed.
add a comment |
The question is not clear, but I will guess what you mean.
I think you want to get the results in my column H.
For this, I used in row 10 the formula
=IF(AND($D10=5,$G10>=3),"IV",IF(AND($D10=4,$G10>=4),"IV",IF(AND(OR($D10=3,$D10=2),$G10=5),"IV",IF(AND($D10=5, $G10<=2),"III",IF(AND(OR($G10=3,$G10=2),$D10=4),"III",IF(AND(OR($G10=3,$G10=4),$D10=3),"III",IF(AND($D10=2,$G10=4),"III",IF(AND($D10=3, $G10<=2),"II",IF(AND(OR($G10=3,$G10=2),$D10=2),"II",IF(AND($D10=4,$G10=1),"II",IF(AND($D10=1,$G10>=3),"II","I")))))))))))
(copy-paste in row 11).
In row 12 I used
=INDIRECT("R"&TEXT($G12+row($B$3)-1,"0")&"C"&TEXT($D12+COLUMN($B$3)-1,"0"),FALSE)
which relies on the table above.
None of the formulas check that 1 <= col D,G <= 5, you would have to add that if needed.
add a comment |
The question is not clear, but I will guess what you mean.
I think you want to get the results in my column H.
For this, I used in row 10 the formula
=IF(AND($D10=5,$G10>=3),"IV",IF(AND($D10=4,$G10>=4),"IV",IF(AND(OR($D10=3,$D10=2),$G10=5),"IV",IF(AND($D10=5, $G10<=2),"III",IF(AND(OR($G10=3,$G10=2),$D10=4),"III",IF(AND(OR($G10=3,$G10=4),$D10=3),"III",IF(AND($D10=2,$G10=4),"III",IF(AND($D10=3, $G10<=2),"II",IF(AND(OR($G10=3,$G10=2),$D10=2),"II",IF(AND($D10=4,$G10=1),"II",IF(AND($D10=1,$G10>=3),"II","I")))))))))))
(copy-paste in row 11).
In row 12 I used
=INDIRECT("R"&TEXT($G12+row($B$3)-1,"0")&"C"&TEXT($D12+COLUMN($B$3)-1,"0"),FALSE)
which relies on the table above.
None of the formulas check that 1 <= col D,G <= 5, you would have to add that if needed.
The question is not clear, but I will guess what you mean.
I think you want to get the results in my column H.
For this, I used in row 10 the formula
=IF(AND($D10=5,$G10>=3),"IV",IF(AND($D10=4,$G10>=4),"IV",IF(AND(OR($D10=3,$D10=2),$G10=5),"IV",IF(AND($D10=5, $G10<=2),"III",IF(AND(OR($G10=3,$G10=2),$D10=4),"III",IF(AND(OR($G10=3,$G10=4),$D10=3),"III",IF(AND($D10=2,$G10=4),"III",IF(AND($D10=3, $G10<=2),"II",IF(AND(OR($G10=3,$G10=2),$D10=2),"II",IF(AND($D10=4,$G10=1),"II",IF(AND($D10=1,$G10>=3),"II","I")))))))))))
(copy-paste in row 11).
In row 12 I used
=INDIRECT("R"&TEXT($G12+row($B$3)-1,"0")&"C"&TEXT($D12+COLUMN($B$3)-1,"0"),FALSE)
which relies on the table above.
None of the formulas check that 1 <= col D,G <= 5, you would have to add that if needed.
answered Feb 9 at 9:44
sancho.ssancho.s
1,6991536
1,6991536
add a comment |
add a comment |
If ( OR( (D,G)=(5,5), (D,G)=(5,4), (D,G)=(5,3), (D,G)=(4,5), (D,G)=(4,4), (D,G)=(3,5), (D,G)=(2,5) ), "IV",
If ( OR( (D,G)=(5,2), (D,G)=(5,1), (D,G)=(4,3, (D,G)=(4,2, (D,G)=(3,4, (D,G)=(3,3, (D,G)=(2,4) ), "III",
If columns (D,G)=IV(4,1),(3,2),(3,1),(2,3),(2,2),(1,5),(1,4) and (1,3) then assign II
here you lost me as how to interpret that "IV (4,1)
If ( OR( (D,G)=(2,1, (D,G)=(1,2), (D,G)=(1,1) ), "I","ERR" ) ) ) )
for each set of (D,G)=(5,5) above, put what you have already coded as AND($D10=5,$G10>=3) and so on.
One line is not coded by me due to the lack of clarity about IV, hope you would make that out yourself, or comment below so that I explain further.
However you said above that (D,G)=(5,5), but your formula is testing $D10=5,$G10>=3, that is >= instead of =, such things will give different results.
Why the downvote? Anything wrong in this?
– VSRawat
Feb 9 at 14:54
add a comment |
If ( OR( (D,G)=(5,5), (D,G)=(5,4), (D,G)=(5,3), (D,G)=(4,5), (D,G)=(4,4), (D,G)=(3,5), (D,G)=(2,5) ), "IV",
If ( OR( (D,G)=(5,2), (D,G)=(5,1), (D,G)=(4,3, (D,G)=(4,2, (D,G)=(3,4, (D,G)=(3,3, (D,G)=(2,4) ), "III",
If columns (D,G)=IV(4,1),(3,2),(3,1),(2,3),(2,2),(1,5),(1,4) and (1,3) then assign II
here you lost me as how to interpret that "IV (4,1)
If ( OR( (D,G)=(2,1, (D,G)=(1,2), (D,G)=(1,1) ), "I","ERR" ) ) ) )
for each set of (D,G)=(5,5) above, put what you have already coded as AND($D10=5,$G10>=3) and so on.
One line is not coded by me due to the lack of clarity about IV, hope you would make that out yourself, or comment below so that I explain further.
However you said above that (D,G)=(5,5), but your formula is testing $D10=5,$G10>=3, that is >= instead of =, such things will give different results.
Why the downvote? Anything wrong in this?
– VSRawat
Feb 9 at 14:54
add a comment |
If ( OR( (D,G)=(5,5), (D,G)=(5,4), (D,G)=(5,3), (D,G)=(4,5), (D,G)=(4,4), (D,G)=(3,5), (D,G)=(2,5) ), "IV",
If ( OR( (D,G)=(5,2), (D,G)=(5,1), (D,G)=(4,3, (D,G)=(4,2, (D,G)=(3,4, (D,G)=(3,3, (D,G)=(2,4) ), "III",
If columns (D,G)=IV(4,1),(3,2),(3,1),(2,3),(2,2),(1,5),(1,4) and (1,3) then assign II
here you lost me as how to interpret that "IV (4,1)
If ( OR( (D,G)=(2,1, (D,G)=(1,2), (D,G)=(1,1) ), "I","ERR" ) ) ) )
for each set of (D,G)=(5,5) above, put what you have already coded as AND($D10=5,$G10>=3) and so on.
One line is not coded by me due to the lack of clarity about IV, hope you would make that out yourself, or comment below so that I explain further.
However you said above that (D,G)=(5,5), but your formula is testing $D10=5,$G10>=3, that is >= instead of =, such things will give different results.
If ( OR( (D,G)=(5,5), (D,G)=(5,4), (D,G)=(5,3), (D,G)=(4,5), (D,G)=(4,4), (D,G)=(3,5), (D,G)=(2,5) ), "IV",
If ( OR( (D,G)=(5,2), (D,G)=(5,1), (D,G)=(4,3, (D,G)=(4,2, (D,G)=(3,4, (D,G)=(3,3, (D,G)=(2,4) ), "III",
If columns (D,G)=IV(4,1),(3,2),(3,1),(2,3),(2,2),(1,5),(1,4) and (1,3) then assign II
here you lost me as how to interpret that "IV (4,1)
If ( OR( (D,G)=(2,1, (D,G)=(1,2), (D,G)=(1,1) ), "I","ERR" ) ) ) )
for each set of (D,G)=(5,5) above, put what you have already coded as AND($D10=5,$G10>=3) and so on.
One line is not coded by me due to the lack of clarity about IV, hope you would make that out yourself, or comment below so that I explain further.
However you said above that (D,G)=(5,5), but your formula is testing $D10=5,$G10>=3, that is >= instead of =, such things will give different results.
edited Feb 9 at 9:02
answered Feb 9 at 8:50
VSRawatVSRawat
17012
17012
Why the downvote? Anything wrong in this?
– VSRawat
Feb 9 at 14:54
add a comment |
Why the downvote? Anything wrong in this?
– VSRawat
Feb 9 at 14:54
Why the downvote? Anything wrong in this?
– VSRawat
Feb 9 at 14:54
Why the downvote? Anything wrong in this?
– VSRawat
Feb 9 at 14:54
add a comment |
I'm not entirely sure what you are trying to do, but you need to remove the ")" in front of the "," that is in front of the IF:
=IF(AND($D1=5,$G1>=3),"IV",IF(AND($D1=4,$G1>=4),"IV",IF(AND(OR($D1=3,$D1=2),$G1=5),"IV",IF(AND($D1=5,$G1<=2),"III",IF(AND(OR($G1=3,$G1=2),$D1=4),"III",IF(AND(OR($G1=3,$G1=4),$D1=3),"III",IF(AND($D1=2,$G1=4),"III",IF(AND($D1=3,$G1<=2),"II",IF(AND(OR($G1=3,$G1=2),$D1=2),"II",IF(AND($D1=4,$G1=1),"II",IF(AND($D1=1,$G1>=3),"II","I")))))))))))
add a comment |
I'm not entirely sure what you are trying to do, but you need to remove the ")" in front of the "," that is in front of the IF:
=IF(AND($D1=5,$G1>=3),"IV",IF(AND($D1=4,$G1>=4),"IV",IF(AND(OR($D1=3,$D1=2),$G1=5),"IV",IF(AND($D1=5,$G1<=2),"III",IF(AND(OR($G1=3,$G1=2),$D1=4),"III",IF(AND(OR($G1=3,$G1=4),$D1=3),"III",IF(AND($D1=2,$G1=4),"III",IF(AND($D1=3,$G1<=2),"II",IF(AND(OR($G1=3,$G1=2),$D1=2),"II",IF(AND($D1=4,$G1=1),"II",IF(AND($D1=1,$G1>=3),"II","I")))))))))))
add a comment |
I'm not entirely sure what you are trying to do, but you need to remove the ")" in front of the "," that is in front of the IF:
=IF(AND($D1=5,$G1>=3),"IV",IF(AND($D1=4,$G1>=4),"IV",IF(AND(OR($D1=3,$D1=2),$G1=5),"IV",IF(AND($D1=5,$G1<=2),"III",IF(AND(OR($G1=3,$G1=2),$D1=4),"III",IF(AND(OR($G1=3,$G1=4),$D1=3),"III",IF(AND($D1=2,$G1=4),"III",IF(AND($D1=3,$G1<=2),"II",IF(AND(OR($G1=3,$G1=2),$D1=2),"II",IF(AND($D1=4,$G1=1),"II",IF(AND($D1=1,$G1>=3),"II","I")))))))))))
I'm not entirely sure what you are trying to do, but you need to remove the ")" in front of the "," that is in front of the IF:
=IF(AND($D1=5,$G1>=3),"IV",IF(AND($D1=4,$G1>=4),"IV",IF(AND(OR($D1=3,$D1=2),$G1=5),"IV",IF(AND($D1=5,$G1<=2),"III",IF(AND(OR($G1=3,$G1=2),$D1=4),"III",IF(AND(OR($G1=3,$G1=4),$D1=3),"III",IF(AND($D1=2,$G1=4),"III",IF(AND($D1=3,$G1<=2),"II",IF(AND(OR($G1=3,$G1=2),$D1=2),"II",IF(AND($D1=4,$G1=1),"II",IF(AND($D1=1,$G1>=3),"II","I")))))))))))
answered Feb 8 at 21:39
Phlegon_of_TrallesPhlegon_of_Tralles
1004
1004
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%2f1403676%2fthis-syntax-is-not-working-in-my-excel-formula%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
1
Welcome to Super User. Your question currently doesn't refer to what you need help with. Please edit your question to make it clear.
– juniorRubyist
Feb 8 at 23:26