ChiefsPlanet

ChiefsPlanet (https://www.chiefsplanet.com/BB/index.php)
-   Nzoner's Game Room (https://www.chiefsplanet.com/BB/forumdisplay.php?f=1)
-   -   Computers Excel Help (https://www.chiefsplanet.com/BB/showthread.php?t=274418)

Iron Chef 07-10-2013 07:35 AM

Excel Help
 
I have an Excel question. I need to run consecutive numbering starting at L001001. The hard part is I need the sheet to show 4 sets of each number. 2500 sets 10,000 total entries
L1001001
L1001001
L1001001
L1001001
L1001002
L1001002
L1001002
L1001002...etc

Is there a formula that will accomplish this?

Thanks

DaFace 07-10-2013 07:39 AM

If you're able to use a separate column for the numbers, then concatenate, it'll be easy.

Column A:
1001001
1001001
1001001
1001001
=A1+1
=A2+1
=A3+1
=A4+1
(fill down)

Column B:
="L"&A1
="L"&A2
(fill down)

If you're just trying to get them in there and don't need to keep the formulas, you can then copy and paste values from Column B wherever you need them, then delete.

Iron Chef 07-10-2013 07:51 AM

Quote:

Originally Posted by DaFace (Post 9802751)
If you're able to use a separate column for the numbers, then concatenate, it'll be easy.

Column A:
1001001
1001001
1001001
1001001
=A1+1
=A2+1
=A3+1
=A4+1
(fill down)

Column B:
="L"&A1
="L"&A2
(fill down)

If you're just trying to get them in there and don't need to keep the formulas, you can then copy and paste values from Column B wherever you need them, then delete.


Thank you very much,

new wrinkle What if the start number is L00002001..The zeros at the front are falling off

Donger 07-10-2013 07:56 AM

Quote:

Originally Posted by DaFace (Post 9802751)
concatenate

I learned a new word today. Neat.

Saul Good 07-10-2013 07:59 AM

Quote:

Originally Posted by Donger (Post 9802772)
I learned a new word today. Neat.

You didn't know what "neat" meant? That's odd.

DaFace 07-10-2013 08:00 AM

Quote:

Originally Posted by Iron Chef (Post 9802764)
Thank you very much,

new wrinkle What if the start number is L00002001..The zeros at the front are falling off

Slight change in column B.

="L"&TEXT(A1,"00000000")

Change the number of zeroes in parenthesis to however many digits you need shown.

Donger 07-10-2013 08:02 AM

Quote:

Originally Posted by Saul Good (Post 9802774)
You didn't know what "neat" meant? That's odd.

No, I knew what neat means. You should have realized that I didn't mean neat, since I did not use a colon and neat was capitalized.

Iron Chef 07-10-2013 08:10 AM

Quote:

Originally Posted by DaFace (Post 9802775)
Slight change in column B.

="L"&TEXT(A1,"00000000")

Change the number of zeroes in parenthesis to however many digits you need shown.

Thank you very much...Worked like a charm.

scho63 05-26-2017 10:51 AM

I need to do two things in the same spreadsheet:

1. A running total in a SINGLE cell at the top of my spreadsheet as I add more and more numbers in a column for each day that passes

2. Underneath that cell that holds the SUM running total I want to have the AVERAGE of those running numbers so that as I add more numbers. it knows to have the AVERAGE add a new day to correctly calculate the total number of days as they increase.

Any help greatly appreciated and POS REP will be sent if it works!

I'm calculating daily money raised.

DaFace 05-26-2017 11:03 AM

That should be pretty easy - you just need to make sure the range of your two formulas includes all of the cells where you MIGHT eventually have data. Sum and average formulas ignore blank cells, so that won't hurt anything. So if you're putting your values in column B, your running total formula would be something like:

=SUM(B1:B500) or even just =SUM(B:B)

And your average formula would be:

=AVERAGE(B1:B500) or even just =AVERAGE(B:B)

Dayze 05-26-2017 11:06 AM

=AVERAGE(A1:A50000)

can you just insert an average Function in there; where the range is where the data you want averaged begins, then just make it go to like 10,000 to end? that way as you add stuff, whatever you've added each day etc, is captured by that range?

Dayze 05-26-2017 11:06 AM

Nevermind....DaFace covered it.

Grim 05-26-2017 11:12 AM

Excel is the most underrated tool the Microsoft ever came out with, IMO.
So powerful.

I know a guy who uses excel scripts to run his firework displays.

scho63 05-26-2017 11:15 AM

POS REP SENT TO BOTH OF YOU FOR YOUR HELP THAT WORKED!

Thanks

Dayze 05-26-2017 11:19 AM

Quote:

Originally Posted by Grim (Post 12890704)
Excel is the most underrated tool the Microsoft ever came out with, IMO.
So powerful.

I know a guy who uses excel scripts to run his firework displays.

agree; I use excel for everything.


All times are GMT -6. The time now is 05:16 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2024, vBulletin Solutions, Inc.