What's new
Fantasy Football - Footballguys Forums

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

***Official*** Excel Help Corner (5 Viewers)

I just copy/pasted this fine as text.  No idea why you're not able to do it.

You said you've created a file and then imported it... is the file layout the same every time?  If so, you can easily macro the import (I understand how annoying the import wizard is).
Gah, it's just my curse then. I cannot get anything but this when I paste:


1234


1.86E+15


2-Mar



Google Sheets: pastes fine, no formatting.  Excel Online: Same crapola as desktop program.

 
Last edited by a moderator:
I just copy/pasted this fine as text.  No idea why you're not able to do it.

You said you've created a file and then imported it... is the file layout the same every time?  If so, you can easily macro the import (I understand how annoying the import wizard is).
Gah, it's just my curse then. I cannot get anything but this when I paste:


1234


1.86E+15


2-Mar

Google Sheets: pastes fine, no formatting.  Excel Online: Same crapola as desktop program.
I have the same problem. Just so you aren't alone!!! :shrug:

 
OK I googled it and got an answer for the Zip. One simple answer is to put the ' in front of the number, but that treats it as text, and Excel gets it's panties in a wad about that and puts the green Sehorn in the corner because you are 'treating a number as text.'

Here is what I found and it works.

You can correct this formatting within Excel using two different methods.

1a. Select the entire Zip Code column from within Excel.
1b. Select the menu option Format -> Cells...
1c. Select the Number tab, and click on the category called "Special".
1d. You can then select the type Zip Code or Zip Code + 4, and then click OK.
 
For the Long Numbers, I went back and switched the format to 'General' and the numbers switched from Scientific to plain old ordinary.

For the numbers with dashes, before importing change the column format to 'text' and you'll be set.

 
I'm getting that division by error symbol when I use this formula below. How do I get rid of it?

=T7/(U7+V7+W7+X7+Y7+Z7)

Thank You!

 
I'm getting that division by error symbol when I use this formula below. How do I get rid of it?

=T7/(U7+V7+W7+X7+Y7+Z7)

Thank You!
this error? #DIV/0! if so, that means the formula in red sums to zero. assuming you're using Excel 2013 or newer, use this: =IFERROR(T7/(U7+V7+W7+X7+Y7+Z7),0). it will return 0 (or whatever u put in place of the zero) if the denominator is 0 or if the formula just craps out.

 
this error? #DIV/0! if so, that means the formula in red sums to zero. assuming you're using Excel 2013 or newer, use this: =IFERROR(T7/(U7+V7+W7+X7+Y7+Z7),0). it will return 0 (or whatever u put in place of the zero) if the denominator is 0 or if the formula just craps out.

Thanks, that took care of it!

 
One other question, This formula is working as intended.

=IFERROR(T30/(U30+V30+W30+X30+Y30+Z30),0)

However, is there a way to add a filter to this existing logic.

IF Column T is LT 3, then output a 0, else do the above calculation?

 
One other question, This formula is working as intended.

=IFERROR(T30/(U30+V30+W30+X30+Y30+Z30),0)

However, is there a way to add a filter to this existing logic.

IF Column T is LT 3, then output a 0, else do the above calculation?
That's another layer that forces you to nest a couple of IFs instead of using IFERROR.

=IF(ISERROR(T30/(U30+V30+W30+X30+Y30+Z30)),0,IF((T30/(U30+V30+W30+X30+Y30+Z30))<3,0,T30/(U30+V30+W30+X30+Y30+Z30)))

 
One other question, This formula is working as intended.

=IFERROR(T30/(U30+V30+W30+X30+Y30+Z30),0)

However, is there a way to add a filter to this existing logic.

IF Column T is LT 3, then output a 0, else do the above calculation?
=IF(T30<3,0,IFERROR(T30/(U30+V30+W30+X30+Y30+Z30),0))

 
for the wife

got an easy one;

column A has years starting with 2017 and going higher

column B is Y or N

formula needed from column A to feed into column B - if column A is 2017 column B should be no.  if column A is > 2017 column B should be Y.

thx

 
for the wife

got an easy one;

column A has years starting with 2017 and going higher

column B is Y or N

formula needed from column A to feed into column B - if column A is 2017 column B should be no.  if column A is > 2017 column B should be Y.

thx
What should column B be if column A < 2017?

 
the years start at 2017 there is nothing earlier.
I think it's pretty simple then. Let's say your column A has the heading "Date", and the data starts in row 2. 

In cell B2, type 

=if (year (A2)=2017,"n","y")

Copy and paste down the entire column. 

Profit. 

 
Last edited by a moderator:
I think it's pretty simple then. Let's say your column A has the heading "Date", and the data starts in row 2. 

In cell B2, type 

=if (year (A2)=2017,"n","y")

Copy and paste down the entire column. 

Profit. 
almost, but everything says Y - 2018 2019, Etc all say Y

thought?  @Psychopav

 
Last edited by a moderator:
Column A is just the years, not dates, right?  Then just do:

=if(A2=2017,"N","Y")

If that doesn't work, the other thing that comes to mind is that the years are stored as text instead of numbers or something, so you could try:

=if(A2="2017","N","Y")
so, this almost worked, but all came up as Y......so we changed the A2=2017 to A2>2017 and now it works.

thx for the push

 
for the wife

got an easy one;

column A has years starting with 2017 and going higher

column B is Y or N

formula needed from column A to feed into column B - if column A is 2017 column B should be no.  if column A is > 2017 column B should be Y.

thx
sonuva - I wanted the opposite formula.

jeebus

 
so, wife has a pivot table (she thinks).  trying to accomplish the following;

column A has about 4 actions listed that pertain to real estate, like renew, move, extend, etc.  column B has many dates in mm/dd/yyyy form.  lets says each column has 50 rows.

so, renew might have 15 dates, move might have 10 dates, etc.

she would like to filter the dates in column B from newest to oldest, but wants to filter for each action in column A.  so, renew will filter newest to oldest, move will then filter, etc.

any thoughts or prayers?

@Ned

 
so, wife has a pivot table (she thinks).  trying to accomplish the following;

column A has about 4 actions listed that pertain to real estate, like renew, move, extend, etc.  column B has many dates in mm/dd/yyyy form.  lets says each column has 50 rows.

so, renew might have 15 dates, move might have 10 dates, etc.

she would like to filter the dates in column B from newest to oldest, but wants to filter for each action in column A.  so, renew will filter newest to oldest, move will then filter, etc.

any thoughts or prayers?

@Ned
Not at a computer but she should be able to right-click in the values area (where dates are listed) and sort there.  It should apply the sort to each of her categories. 

 
Not at a computer but she should be able to right-click in the values area (where dates are listed) and sort there.  It should apply the sort to each of her categories. 
how would it know she has different cats to sort?  wouldn't it just sort the entire column without regard?

 
Last edited by a moderator:
Data|Filter seems like it might be of use for that.

If you use Data|Sort, you can add multiple levels of sorting.

 
Last edited by a moderator:
so, wife has a pivot table (she thinks).  trying to accomplish the following;

column A has about 4 actions listed that pertain to real estate, like renew, move, extend, etc.  column B has many dates in mm/dd/yyyy form.  lets says each column has 50 rows.

so, renew might have 15 dates, move might have 10 dates, etc.

she would like to filter the dates in column B from newest to oldest, but wants to filter for each action in column A.  so, renew will filter newest to oldest, move will then filter, etc.

any thoughts or prayers?

@Ned
Sort the dates column first, then sort the action column.

ETA: no, your wife doesn't have a pivot table.

 
Last edited by a moderator:
A                                                       B

Close                                            Dates

Open

Merge

so, a has only 3 values, but b has piles of dates.  she would like the dates in b that associate with a to sort by date.  so close would have 10 dates sorted, open may have 20 dates sorted, etc. 

 
exactly......however, her sheet or pivot or whatever only has the action name listed once.

I am trying to get a copy to share, but you are on the right path.
OK, now I understand why the sorting by B and then A didn't work.  Having those blanks screws things up (its not a good data practice).

Fill in the blanks with the appropriate actions using the auto fill feature.  Then do the sort I posted earlier.  If she insists on not having the repeated actions, she can delete them after the sorting is done.

 
OK, now I understand why the sorting by B and then A didn't work.  Having those blanks screws things up (its not a good data practice).

Fill in the blanks with the appropriate actions using the auto fill feature.  Then do the sort I posted earlier.  If she insists on not having the repeated actions, she can delete them after the sorting is done.
I sent you a PM for a look.

 
here is an easier question.  Excel work book has multiple tabs.  is it possible to email only 1 tab of a multi tabbed work book?

@Ned

 
Last edited by a moderator:
actually, neither worked.

when right-clicked, the send option doesn't come up.  when you say copy, it copies the tab in the same workbook.

 
well,

want to put you excel nerds on alert that I will likely need 'pie chart' help later. 

proactively, any good ideas on how to easily create pie charts in excel?

tia

@Ned

 

Users who are viewing this thread

Back
Top