Front Office Football Central  

Go Back   Front Office Football Central > Main Forums > Off Topic
Register FAQ Members List Calendar Mark Forums Read Statistics

Reply
 
Thread Tools
Old 08-20-2021, 11:02 PM   #1
korme
Go Reds
 
Join Date: May 2001
Location: Bloodbuzz Ohio
Simple Excel Help

I know I've done this before but for some reason I cannot search correctly for this. I want to fill the rest of this table out with simple W/L records with a (x-x) total at the bottom. Formula is on the screen, what am I doing wrong?



Last edited by korme : 08-20-2021 at 11:05 PM.
korme is offline   Reply With Quote
Old 08-20-2021, 11:27 PM   #2
CarterNMA
Mascot
 
Join Date: Oct 2000
Location: Maryland by way of Arizona
Change the commas to the left and right of "-" to ampersands?
CarterNMA is offline   Reply With Quote
Old 08-21-2021, 12:28 AM   #3
Vince, Pt. II
Pro Starter
 
Join Date: Sep 2009
Location: Somewhere More Familiar
That will work. Or wrap the whole thing in a concatenate().
Vince, Pt. II is offline   Reply With Quote
Old 08-21-2021, 12:29 AM   #4
Vince, Pt. II
Pro Starter
 
Join Date: Sep 2009
Location: Somewhere More Familiar
Either of these:
=countif(c4:c15,"W")&"-"&countif(c4:c15,"L")

=concatenate(countif(c4:c15,"W"),"-",countif(c4:c15,"L"))
Vince, Pt. II is offline   Reply With Quote
Old 08-21-2021, 08:42 AM   #5
korme
Go Reds
 
Join Date: May 2001
Location: Bloodbuzz Ohio
So simple. Thanks guys.
korme is offline   Reply With Quote
Old 08-21-2021, 08:43 AM   #6
korme
Go Reds
 
Join Date: May 2001
Location: Bloodbuzz Ohio
Is there a way to add a row in the future and have that formula auto-update? This will be a yearly updating obviously so I envision a lot of tediousness here.
korme is offline   Reply With Quote
Old 08-21-2021, 08:55 AM   #7
henry296
College Starter
 
Join Date: Oct 2000
Location: Pittsburgh, PA
you can use offset at end of the range used in the countif.

Countif(c4:offset(c16,-1,0)

The offset says start in c16 and go up 1 row and over 0 columns. Since the c16 is a relative reference it will change when you insert the row.
__________________
"It's a great day for hockey" - "Badger" Bob Johnson
henry296 is offline   Reply With Quote
Old 08-21-2021, 10:07 AM   #8
korme
Go Reds
 
Join Date: May 2001
Location: Bloodbuzz Ohio
Thanks, huge time saver.
korme is offline   Reply With Quote
Old 03-28-2022, 07:13 AM   #9
Jan135
n00b
 
Join Date: Jan 2022
Hello! Sorry for potentially unrelated question, but are there any major differences between Microsoft Excel and Google Sheets? I am starting a secretary job at a new place and they insist on me using Google Sheets instead of Excel. From the first look, it looks the same, but you can never know.
Jan135 is offline   Reply With Quote
Old 03-28-2022, 08:01 AM   #10
flere-imsaho
Coordinator
 
Join Date: Sep 2004
Location: Chicagoland
I've had to use Sheets a bit in the past few years and I'd say they're reasonably close. I still prefer Excel as it feels more responsive and I'm used to Excel's formula names vs. Sheets' formula names (they both have most of the same formulas, just different names).

Sheets' major disadvantage vs. Excel is when you're working with a lot of data (e.g. over 1000 rows). You need to add rows manually after 1000, and it slows way the fuck down, especially if you're going to do analysis on that much data.
flere-imsaho is offline   Reply With Quote
Old 03-29-2022, 04:22 PM   #11
Mike Lowe
College Prospect
 
Join Date: Aug 2006
Location: San Diego, CA
Is it ok to threadjack this? Actually seems to be a good idea for a general Excel help thread:

I am simply trying to rotate a sunburst graph. There doesn't seem to be anyway to actually rotate this. At default, it has a vertical line for 50% and I want it to instead be horizontal. It's a dynamic graph too, so I can't just do the trick of using an actual image in the background of a graph.

You used to be able to do this with the donut graph in older Excel.
__________________
Be fulfilled. Be grateful. Be good to one another.
@MikeLowe47 @SimSportsGamin9
Website | YouTube | Discord
Mike Lowe is offline   Reply With Quote
Old 03-30-2022, 08:08 AM   #12
flere-imsaho
Coordinator
 
Join Date: Sep 2004
Location: Chicagoland
Sorry, no idea. All graphs in Excel seem to exist solely to frustrate me.
flere-imsaho is offline   Reply With Quote
Old 07-11-2023, 04:11 PM   #13
Mike Lowe
College Prospect
 
Join Date: Aug 2006
Location: San Diego, CA
Giving this a bump with a question that's probably easy for you Sheets/Excel experts:

I have the following that works fine:
=IF(C9>20000,C3*1.1,IF(C9>10000,C3*1.05,IF(C9>50000,C3*0.95,IF(C9>0,C3*0.9,"Enter Mileage Below"))))

What I'm trying to add within this is a simple addition of a number after this all generates. So for instance, if "2022" is found in B1, I want to add the number 5,000 at the end of the expression above. Add 10,000 for 2021, etc.

Hope this makes sense! I'm basically not sure how to add a second nested IF statement into the same cell. I'm hoping I can have this perform an additional task (add the number based on an entry in B1) to the end of this existing statement.
__________________
Be fulfilled. Be grateful. Be good to one another.
@MikeLowe47 @SimSportsGamin9
Website | YouTube | Discord

Last edited by Mike Lowe : 07-11-2023 at 04:13 PM.
Mike Lowe is offline   Reply With Quote
Old 07-11-2023, 04:34 PM   #14
MIJB#19
Coordinator
 
Join Date: Oct 2000
Location: Maassluis, Zuid-Holland, Netherlands
Quote:
Originally Posted by Mike Lowe View Post
Giving this a bump with a question that's probably easy for you Sheets/Excel experts:

I have the following that works fine:
=IF(C9>20000,C3*1.1,IF(C9>10000,C3*1.05,IF(C9>50000,C3*0.95,IF(C9>0,C3*0.9,"Enter Mileage Below"))))

What I'm trying to add within this is a simple addition of a number after this all generates. So for instance, if "2022" is found in B1, I want to add the number 5,000 at the end of the expression above. Add 10,000 for 2021, etc.

Hope this makes sense! I'm basically not sure how to add a second nested IF statement into the same cell. I'm hoping I can have this perform an additional task (add the number based on an entry in B1) to the end of this existing statement.
If I'm getting you correctly, I'd say your options are:
= IF(the big if with C9 and C3) + IF(B1 = 2022,5000,if(b1 = 2021, 10000, etc))
This only works if both your if-statements will always result in numbers, or it could give some errors.

If the "Enter Mileage Below" text is your safety net for values <= 0, then I'd suggest you:
= IF(C9 <= 0 , "text", if(c9> 20000, etc ) + if(B1 = 2022,5000,etc ) )


For the IF(B1 = ) part, you might want to consider a VLOOKUP pointing to a table that has the values 2022 and 5,000 together, and has 2021 and 10,000 together, etc. It's trickier for the IF(C9 = ) part, because you're using ranges.
__________________
* 2005 Golden Scribe winner for best FOF Dynasty about IHOF's Maassluis Merchantmen
* Former GM of GEFL's Houston Oilers and WOOF's Curacao Cocktail
MIJB#19 is offline   Reply With Quote
Old 07-13-2023, 05:14 PM   #15
Mike Lowe
College Prospect
 
Join Date: Aug 2006
Location: San Diego, CA
This worked great and was so easy! Thank you so much!
__________________
Be fulfilled. Be grateful. Be good to one another.
@MikeLowe47 @SimSportsGamin9
Website | YouTube | Discord
Mike Lowe is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is On
Forum Jump


All times are GMT -5. The time now is 06:31 AM.



Powered by vBulletin Version 3.6.0
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.