Extending a sheet with hidden/deleted last columns in Microsoft Excel
up vote
1
down vote
favorite
I inherited an Excel workbook from a colleague which left the company. Somehow, this colleague managed to hide or delete all columns to the right of a sheet. For instance, currently this worksheet ends at column BG -- it's not that column BH is empty, it is not shown at all. Whether it has been hidden or deleted, I have no idea. Said colleague can't be reached to ask how this was done, and even if reached, probably wouldn't remember anyway.
Periodically I must add two columns to the right of this sheet, copying these columns from the last two, so that the cells referenced by the formulas are also shifted. For instance, suppose I currently have some in BF6 a formula like "=AnotherSheet!C6", and in BG6 a formula like "=AnotherSheet!D6", where AnotherSheet is some other sheet in my workbook. What I need to do is create columns BH and BI and populate them with a copy of the contents of BF and BG, respectively. Returning to the example, BH6 should contain the formula "=AnotherSheet!E6" and BI6 should contain the formula "=AnotherSheet!F6".
Now, if BH and BI weren't hidden, or deleted, or whatever, I could just select BF and BG, then copy and paste it into BH and BI. Formulas would be shifted exactly in the way I need them. Since I can't do that, I have to insert new columns. However, columns are always inserted to the left of the current selection (I haven't found a way of inserting them to the right). Hence I end up with "=AnotherSheet!A6" in BF6, "=AnotherSheet!B6" in BG6, "=AnotherSheet!C6" in BH6 and "=AnotherSheet!D6"; i.e. the original contents of BF6 and BG6 are carried over without change to BH6 and BI6, and since new cells are inserted to the left, formula contents are shifted left as well.
Can anyone suggest a way to either:
- recreate or unhide all columns to the right that were deleted or hidden?
- insert columns to the right of the current selection?
- some other way to quickly create 2 columns to the right that are a copy (with formulas correspondingly shifted) of the current 2 columns?
If it's not asking too much, no VBA solutions please. And in case it makes a difference, this is on MS Excel 2011 for Mac.
microsoft-excel
add a comment |
up vote
1
down vote
favorite
I inherited an Excel workbook from a colleague which left the company. Somehow, this colleague managed to hide or delete all columns to the right of a sheet. For instance, currently this worksheet ends at column BG -- it's not that column BH is empty, it is not shown at all. Whether it has been hidden or deleted, I have no idea. Said colleague can't be reached to ask how this was done, and even if reached, probably wouldn't remember anyway.
Periodically I must add two columns to the right of this sheet, copying these columns from the last two, so that the cells referenced by the formulas are also shifted. For instance, suppose I currently have some in BF6 a formula like "=AnotherSheet!C6", and in BG6 a formula like "=AnotherSheet!D6", where AnotherSheet is some other sheet in my workbook. What I need to do is create columns BH and BI and populate them with a copy of the contents of BF and BG, respectively. Returning to the example, BH6 should contain the formula "=AnotherSheet!E6" and BI6 should contain the formula "=AnotherSheet!F6".
Now, if BH and BI weren't hidden, or deleted, or whatever, I could just select BF and BG, then copy and paste it into BH and BI. Formulas would be shifted exactly in the way I need them. Since I can't do that, I have to insert new columns. However, columns are always inserted to the left of the current selection (I haven't found a way of inserting them to the right). Hence I end up with "=AnotherSheet!A6" in BF6, "=AnotherSheet!B6" in BG6, "=AnotherSheet!C6" in BH6 and "=AnotherSheet!D6"; i.e. the original contents of BF6 and BG6 are carried over without change to BH6 and BI6, and since new cells are inserted to the left, formula contents are shifted left as well.
Can anyone suggest a way to either:
- recreate or unhide all columns to the right that were deleted or hidden?
- insert columns to the right of the current selection?
- some other way to quickly create 2 columns to the right that are a copy (with formulas correspondingly shifted) of the current 2 columns?
If it's not asking too much, no VBA solutions please. And in case it makes a difference, this is on MS Excel 2011 for Mac.
microsoft-excel
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I inherited an Excel workbook from a colleague which left the company. Somehow, this colleague managed to hide or delete all columns to the right of a sheet. For instance, currently this worksheet ends at column BG -- it's not that column BH is empty, it is not shown at all. Whether it has been hidden or deleted, I have no idea. Said colleague can't be reached to ask how this was done, and even if reached, probably wouldn't remember anyway.
Periodically I must add two columns to the right of this sheet, copying these columns from the last two, so that the cells referenced by the formulas are also shifted. For instance, suppose I currently have some in BF6 a formula like "=AnotherSheet!C6", and in BG6 a formula like "=AnotherSheet!D6", where AnotherSheet is some other sheet in my workbook. What I need to do is create columns BH and BI and populate them with a copy of the contents of BF and BG, respectively. Returning to the example, BH6 should contain the formula "=AnotherSheet!E6" and BI6 should contain the formula "=AnotherSheet!F6".
Now, if BH and BI weren't hidden, or deleted, or whatever, I could just select BF and BG, then copy and paste it into BH and BI. Formulas would be shifted exactly in the way I need them. Since I can't do that, I have to insert new columns. However, columns are always inserted to the left of the current selection (I haven't found a way of inserting them to the right). Hence I end up with "=AnotherSheet!A6" in BF6, "=AnotherSheet!B6" in BG6, "=AnotherSheet!C6" in BH6 and "=AnotherSheet!D6"; i.e. the original contents of BF6 and BG6 are carried over without change to BH6 and BI6, and since new cells are inserted to the left, formula contents are shifted left as well.
Can anyone suggest a way to either:
- recreate or unhide all columns to the right that were deleted or hidden?
- insert columns to the right of the current selection?
- some other way to quickly create 2 columns to the right that are a copy (with formulas correspondingly shifted) of the current 2 columns?
If it's not asking too much, no VBA solutions please. And in case it makes a difference, this is on MS Excel 2011 for Mac.
microsoft-excel
I inherited an Excel workbook from a colleague which left the company. Somehow, this colleague managed to hide or delete all columns to the right of a sheet. For instance, currently this worksheet ends at column BG -- it's not that column BH is empty, it is not shown at all. Whether it has been hidden or deleted, I have no idea. Said colleague can't be reached to ask how this was done, and even if reached, probably wouldn't remember anyway.
Periodically I must add two columns to the right of this sheet, copying these columns from the last two, so that the cells referenced by the formulas are also shifted. For instance, suppose I currently have some in BF6 a formula like "=AnotherSheet!C6", and in BG6 a formula like "=AnotherSheet!D6", where AnotherSheet is some other sheet in my workbook. What I need to do is create columns BH and BI and populate them with a copy of the contents of BF and BG, respectively. Returning to the example, BH6 should contain the formula "=AnotherSheet!E6" and BI6 should contain the formula "=AnotherSheet!F6".
Now, if BH and BI weren't hidden, or deleted, or whatever, I could just select BF and BG, then copy and paste it into BH and BI. Formulas would be shifted exactly in the way I need them. Since I can't do that, I have to insert new columns. However, columns are always inserted to the left of the current selection (I haven't found a way of inserting them to the right). Hence I end up with "=AnotherSheet!A6" in BF6, "=AnotherSheet!B6" in BG6, "=AnotherSheet!C6" in BH6 and "=AnotherSheet!D6"; i.e. the original contents of BF6 and BG6 are carried over without change to BH6 and BI6, and since new cells are inserted to the left, formula contents are shifted left as well.
Can anyone suggest a way to either:
- recreate or unhide all columns to the right that were deleted or hidden?
- insert columns to the right of the current selection?
- some other way to quickly create 2 columns to the right that are a copy (with formulas correspondingly shifted) of the current 2 columns?
If it's not asking too much, no VBA solutions please. And in case it makes a difference, this is on MS Excel 2011 for Mac.
microsoft-excel
microsoft-excel
asked Jul 6 '14 at 17:30
swineone
12125
12125
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
up vote
0
down vote
Here is a solution I came up with, but I am certain there must be a better solution.
Starting with a sheet ending at row BG, such that BF6 contains the formula "=AnotherSheet!C6" and BG6 contains the formula "=AnotherSheet!D6":
- Select columns BF and BG and copy them (Ctrl+C)
- Right click on the selection and click on "Insert Copied Cells"; now the sheet ends in column BI
- Select columns BH and BI
- Right click on the selection and click on "Insert"; this shift BH and BI to the right, creating BJ and BK, while BH and BI become blank columns
- Select columns BF and BG and copy them (Ctrl+C)
- Select columns BH and BI and paste (Ctrl+V) the columns copied on the previous item
- Select columns BH and BI and copy them (Ctrl+C)
- Select columns BJ and BK and paste (Ctrl+V) the columns copied on the previous item; now BJ6 contains the formula "=AnotherSheet!E6" and BK6 contains the formula "=AnotherSheet!F6"
- Select columns BF and BG, right click on the selection and click on "Remove"; now the sheet ends in columns BI
The result is as requested in the question: BF6 contains "=AnotherSheet!C6", BG6 contains "=AnotherSheet!D6", BH6 contains "=AnotherSheet!E6" and BI6 contains "=AnotherSheet!F6".
I'm still open for a better suggestion.
add a comment |
up vote
0
down vote
Select both the column before and after the hidden ones by holding down the left button then right click and select unhide, alternatively select resize and set the size to 50.
Alternatively, you can select all -A and either un-hide or format->set col width.
The problem is that the sheet ends at column BG. There simply don't exist any other rows to the right of BG. It's not that they exist but are empty. They don't exist at all. Try creating a new workbook and scrolling to the right until you reach column XFD; to the right it's just a gray void. That's exactly what happens here, but in column BG rather than XFD. The difference is that I can select BG and insert a new column and it works, whereas doing that with XFD doesn't work since there's probably a size limit.
– swineone
Jul 6 '14 at 17:43
Alternatively, you can select all <ctrl>-A and either un-hide or format->set col width.
– Steve Barnes
Jul 6 '14 at 18:54
I tried selecting the whole sheet and then going to Format -> Column -> Unhide, but it had no effect. Perhaps these rightmost columns were actually deleted and not merely hidden.
– swineone
Jul 6 '14 at 18:55
If they were deleted then you could not reference them, to find out you could export the sheet as .csv and load it into a good text editor then count the commas on a single line.
– Steve Barnes
Jul 6 '14 at 18:59
add a comment |
up vote
0
down vote
Click in the column BG
column header.
Then, while holding down the mouse button, drag the mouse to the right.
A tooltip saying “16326C” will appear; release the button.
You have now selected 16,326 columns – BG
through XFD
.
You should now be able to Unhide
them.
(Tested on Excel 2007 on Windows 7.)
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Here is a solution I came up with, but I am certain there must be a better solution.
Starting with a sheet ending at row BG, such that BF6 contains the formula "=AnotherSheet!C6" and BG6 contains the formula "=AnotherSheet!D6":
- Select columns BF and BG and copy them (Ctrl+C)
- Right click on the selection and click on "Insert Copied Cells"; now the sheet ends in column BI
- Select columns BH and BI
- Right click on the selection and click on "Insert"; this shift BH and BI to the right, creating BJ and BK, while BH and BI become blank columns
- Select columns BF and BG and copy them (Ctrl+C)
- Select columns BH and BI and paste (Ctrl+V) the columns copied on the previous item
- Select columns BH and BI and copy them (Ctrl+C)
- Select columns BJ and BK and paste (Ctrl+V) the columns copied on the previous item; now BJ6 contains the formula "=AnotherSheet!E6" and BK6 contains the formula "=AnotherSheet!F6"
- Select columns BF and BG, right click on the selection and click on "Remove"; now the sheet ends in columns BI
The result is as requested in the question: BF6 contains "=AnotherSheet!C6", BG6 contains "=AnotherSheet!D6", BH6 contains "=AnotherSheet!E6" and BI6 contains "=AnotherSheet!F6".
I'm still open for a better suggestion.
add a comment |
up vote
0
down vote
Here is a solution I came up with, but I am certain there must be a better solution.
Starting with a sheet ending at row BG, such that BF6 contains the formula "=AnotherSheet!C6" and BG6 contains the formula "=AnotherSheet!D6":
- Select columns BF and BG and copy them (Ctrl+C)
- Right click on the selection and click on "Insert Copied Cells"; now the sheet ends in column BI
- Select columns BH and BI
- Right click on the selection and click on "Insert"; this shift BH and BI to the right, creating BJ and BK, while BH and BI become blank columns
- Select columns BF and BG and copy them (Ctrl+C)
- Select columns BH and BI and paste (Ctrl+V) the columns copied on the previous item
- Select columns BH and BI and copy them (Ctrl+C)
- Select columns BJ and BK and paste (Ctrl+V) the columns copied on the previous item; now BJ6 contains the formula "=AnotherSheet!E6" and BK6 contains the formula "=AnotherSheet!F6"
- Select columns BF and BG, right click on the selection and click on "Remove"; now the sheet ends in columns BI
The result is as requested in the question: BF6 contains "=AnotherSheet!C6", BG6 contains "=AnotherSheet!D6", BH6 contains "=AnotherSheet!E6" and BI6 contains "=AnotherSheet!F6".
I'm still open for a better suggestion.
add a comment |
up vote
0
down vote
up vote
0
down vote
Here is a solution I came up with, but I am certain there must be a better solution.
Starting with a sheet ending at row BG, such that BF6 contains the formula "=AnotherSheet!C6" and BG6 contains the formula "=AnotherSheet!D6":
- Select columns BF and BG and copy them (Ctrl+C)
- Right click on the selection and click on "Insert Copied Cells"; now the sheet ends in column BI
- Select columns BH and BI
- Right click on the selection and click on "Insert"; this shift BH and BI to the right, creating BJ and BK, while BH and BI become blank columns
- Select columns BF and BG and copy them (Ctrl+C)
- Select columns BH and BI and paste (Ctrl+V) the columns copied on the previous item
- Select columns BH and BI and copy them (Ctrl+C)
- Select columns BJ and BK and paste (Ctrl+V) the columns copied on the previous item; now BJ6 contains the formula "=AnotherSheet!E6" and BK6 contains the formula "=AnotherSheet!F6"
- Select columns BF and BG, right click on the selection and click on "Remove"; now the sheet ends in columns BI
The result is as requested in the question: BF6 contains "=AnotherSheet!C6", BG6 contains "=AnotherSheet!D6", BH6 contains "=AnotherSheet!E6" and BI6 contains "=AnotherSheet!F6".
I'm still open for a better suggestion.
Here is a solution I came up with, but I am certain there must be a better solution.
Starting with a sheet ending at row BG, such that BF6 contains the formula "=AnotherSheet!C6" and BG6 contains the formula "=AnotherSheet!D6":
- Select columns BF and BG and copy them (Ctrl+C)
- Right click on the selection and click on "Insert Copied Cells"; now the sheet ends in column BI
- Select columns BH and BI
- Right click on the selection and click on "Insert"; this shift BH and BI to the right, creating BJ and BK, while BH and BI become blank columns
- Select columns BF and BG and copy them (Ctrl+C)
- Select columns BH and BI and paste (Ctrl+V) the columns copied on the previous item
- Select columns BH and BI and copy them (Ctrl+C)
- Select columns BJ and BK and paste (Ctrl+V) the columns copied on the previous item; now BJ6 contains the formula "=AnotherSheet!E6" and BK6 contains the formula "=AnotherSheet!F6"
- Select columns BF and BG, right click on the selection and click on "Remove"; now the sheet ends in columns BI
The result is as requested in the question: BF6 contains "=AnotherSheet!C6", BG6 contains "=AnotherSheet!D6", BH6 contains "=AnotherSheet!E6" and BI6 contains "=AnotherSheet!F6".
I'm still open for a better suggestion.
answered Jul 6 '14 at 17:54
swineone
12125
12125
add a comment |
add a comment |
up vote
0
down vote
Select both the column before and after the hidden ones by holding down the left button then right click and select unhide, alternatively select resize and set the size to 50.
Alternatively, you can select all -A and either un-hide or format->set col width.
The problem is that the sheet ends at column BG. There simply don't exist any other rows to the right of BG. It's not that they exist but are empty. They don't exist at all. Try creating a new workbook and scrolling to the right until you reach column XFD; to the right it's just a gray void. That's exactly what happens here, but in column BG rather than XFD. The difference is that I can select BG and insert a new column and it works, whereas doing that with XFD doesn't work since there's probably a size limit.
– swineone
Jul 6 '14 at 17:43
Alternatively, you can select all <ctrl>-A and either un-hide or format->set col width.
– Steve Barnes
Jul 6 '14 at 18:54
I tried selecting the whole sheet and then going to Format -> Column -> Unhide, but it had no effect. Perhaps these rightmost columns were actually deleted and not merely hidden.
– swineone
Jul 6 '14 at 18:55
If they were deleted then you could not reference them, to find out you could export the sheet as .csv and load it into a good text editor then count the commas on a single line.
– Steve Barnes
Jul 6 '14 at 18:59
add a comment |
up vote
0
down vote
Select both the column before and after the hidden ones by holding down the left button then right click and select unhide, alternatively select resize and set the size to 50.
Alternatively, you can select all -A and either un-hide or format->set col width.
The problem is that the sheet ends at column BG. There simply don't exist any other rows to the right of BG. It's not that they exist but are empty. They don't exist at all. Try creating a new workbook and scrolling to the right until you reach column XFD; to the right it's just a gray void. That's exactly what happens here, but in column BG rather than XFD. The difference is that I can select BG and insert a new column and it works, whereas doing that with XFD doesn't work since there's probably a size limit.
– swineone
Jul 6 '14 at 17:43
Alternatively, you can select all <ctrl>-A and either un-hide or format->set col width.
– Steve Barnes
Jul 6 '14 at 18:54
I tried selecting the whole sheet and then going to Format -> Column -> Unhide, but it had no effect. Perhaps these rightmost columns were actually deleted and not merely hidden.
– swineone
Jul 6 '14 at 18:55
If they were deleted then you could not reference them, to find out you could export the sheet as .csv and load it into a good text editor then count the commas on a single line.
– Steve Barnes
Jul 6 '14 at 18:59
add a comment |
up vote
0
down vote
up vote
0
down vote
Select both the column before and after the hidden ones by holding down the left button then right click and select unhide, alternatively select resize and set the size to 50.
Alternatively, you can select all -A and either un-hide or format->set col width.
Select both the column before and after the hidden ones by holding down the left button then right click and select unhide, alternatively select resize and set the size to 50.
Alternatively, you can select all -A and either un-hide or format->set col width.
edited Jul 6 '14 at 18:54
answered Jul 6 '14 at 17:38
Steve Barnes
19816
19816
The problem is that the sheet ends at column BG. There simply don't exist any other rows to the right of BG. It's not that they exist but are empty. They don't exist at all. Try creating a new workbook and scrolling to the right until you reach column XFD; to the right it's just a gray void. That's exactly what happens here, but in column BG rather than XFD. The difference is that I can select BG and insert a new column and it works, whereas doing that with XFD doesn't work since there's probably a size limit.
– swineone
Jul 6 '14 at 17:43
Alternatively, you can select all <ctrl>-A and either un-hide or format->set col width.
– Steve Barnes
Jul 6 '14 at 18:54
I tried selecting the whole sheet and then going to Format -> Column -> Unhide, but it had no effect. Perhaps these rightmost columns were actually deleted and not merely hidden.
– swineone
Jul 6 '14 at 18:55
If they were deleted then you could not reference them, to find out you could export the sheet as .csv and load it into a good text editor then count the commas on a single line.
– Steve Barnes
Jul 6 '14 at 18:59
add a comment |
The problem is that the sheet ends at column BG. There simply don't exist any other rows to the right of BG. It's not that they exist but are empty. They don't exist at all. Try creating a new workbook and scrolling to the right until you reach column XFD; to the right it's just a gray void. That's exactly what happens here, but in column BG rather than XFD. The difference is that I can select BG and insert a new column and it works, whereas doing that with XFD doesn't work since there's probably a size limit.
– swineone
Jul 6 '14 at 17:43
Alternatively, you can select all <ctrl>-A and either un-hide or format->set col width.
– Steve Barnes
Jul 6 '14 at 18:54
I tried selecting the whole sheet and then going to Format -> Column -> Unhide, but it had no effect. Perhaps these rightmost columns were actually deleted and not merely hidden.
– swineone
Jul 6 '14 at 18:55
If they were deleted then you could not reference them, to find out you could export the sheet as .csv and load it into a good text editor then count the commas on a single line.
– Steve Barnes
Jul 6 '14 at 18:59
The problem is that the sheet ends at column BG. There simply don't exist any other rows to the right of BG. It's not that they exist but are empty. They don't exist at all. Try creating a new workbook and scrolling to the right until you reach column XFD; to the right it's just a gray void. That's exactly what happens here, but in column BG rather than XFD. The difference is that I can select BG and insert a new column and it works, whereas doing that with XFD doesn't work since there's probably a size limit.
– swineone
Jul 6 '14 at 17:43
The problem is that the sheet ends at column BG. There simply don't exist any other rows to the right of BG. It's not that they exist but are empty. They don't exist at all. Try creating a new workbook and scrolling to the right until you reach column XFD; to the right it's just a gray void. That's exactly what happens here, but in column BG rather than XFD. The difference is that I can select BG and insert a new column and it works, whereas doing that with XFD doesn't work since there's probably a size limit.
– swineone
Jul 6 '14 at 17:43
Alternatively, you can select all <ctrl>-A and either un-hide or format->set col width.
– Steve Barnes
Jul 6 '14 at 18:54
Alternatively, you can select all <ctrl>-A and either un-hide or format->set col width.
– Steve Barnes
Jul 6 '14 at 18:54
I tried selecting the whole sheet and then going to Format -> Column -> Unhide, but it had no effect. Perhaps these rightmost columns were actually deleted and not merely hidden.
– swineone
Jul 6 '14 at 18:55
I tried selecting the whole sheet and then going to Format -> Column -> Unhide, but it had no effect. Perhaps these rightmost columns were actually deleted and not merely hidden.
– swineone
Jul 6 '14 at 18:55
If they were deleted then you could not reference them, to find out you could export the sheet as .csv and load it into a good text editor then count the commas on a single line.
– Steve Barnes
Jul 6 '14 at 18:59
If they were deleted then you could not reference them, to find out you could export the sheet as .csv and load it into a good text editor then count the commas on a single line.
– Steve Barnes
Jul 6 '14 at 18:59
add a comment |
up vote
0
down vote
Click in the column BG
column header.
Then, while holding down the mouse button, drag the mouse to the right.
A tooltip saying “16326C” will appear; release the button.
You have now selected 16,326 columns – BG
through XFD
.
You should now be able to Unhide
them.
(Tested on Excel 2007 on Windows 7.)
add a comment |
up vote
0
down vote
Click in the column BG
column header.
Then, while holding down the mouse button, drag the mouse to the right.
A tooltip saying “16326C” will appear; release the button.
You have now selected 16,326 columns – BG
through XFD
.
You should now be able to Unhide
them.
(Tested on Excel 2007 on Windows 7.)
add a comment |
up vote
0
down vote
up vote
0
down vote
Click in the column BG
column header.
Then, while holding down the mouse button, drag the mouse to the right.
A tooltip saying “16326C” will appear; release the button.
You have now selected 16,326 columns – BG
through XFD
.
You should now be able to Unhide
them.
(Tested on Excel 2007 on Windows 7.)
Click in the column BG
column header.
Then, while holding down the mouse button, drag the mouse to the right.
A tooltip saying “16326C” will appear; release the button.
You have now selected 16,326 columns – BG
through XFD
.
You should now be able to Unhide
them.
(Tested on Excel 2007 on Windows 7.)
answered Jul 7 '14 at 18:46
Scott
15.4k113789
15.4k113789
add a comment |
add a comment |
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%2f777636%2fextending-a-sheet-with-hidden-deleted-last-columns-in-microsoft-excel%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