15 Digit Sequence

Mar 31, 2009

My question is, a formula was provided to me that add's a comma and a space after a 15 digit sequence of numbers, that formula is:

=IF(MID(C378,LEN(C378)-1,1)="W",C378&" ,",C378)

And what that does is it would change data in a cell that looks like this
01-02-034-05-W2 TO 02-03-045-06-W2

To this:

01-02-034-05-W2 TO 02-03-045-06-W2 ,

The formula works great, thanks to the help of the posters!

However I just ran into an issue, what if I have a set of data in a cell that looks like this:

01-02-034-05-W2 TO 02-03-045-07-W2
02-02-034-05-W2 TO 02-03-045-07-W2
03-02-034-05-W2 TO 02-03-045-07-W2

And I need a space and a comma at the end of each sequence, so the above would change to this after the formula is applied:

01-02-034-05-W2 TO 02-03-045-07-W2 ,
02-02-034-05-W2 TO 02-03-045-07-W2 ,
03-02-034-05-W2 TO 02-03-045-07-W2 ,

Now the data in the cell is wrapped so it lists one set of numbers, then the next set, then the next set as seen above.

View 9 Replies


ADVERTISEMENT

Seperate 2 Digit Number Into 2 Single Digit Numbers

Apr 3, 2008

I know you can take a number from one cell and combine it with number from another cell and make it one number. What I need to do is the reverse. Take a two digit number in a cell and separate it into single digits in two cells. If you have the number 50 in a cell, then is there a formula that will take the 5 and put it in cell and take the 0 and put it in the cell beside it?

View 4 Replies View Related

Check Digit For 8 Digit Number

Jun 13, 2014

How to calculate a check digit in excel. The details to calculate this are as follows:

All variables in the calculation are positive integers.

We take each integer of the pro number and multiply it by a value and sum them to get a total.

An Example: 8 Digit Pro Number: 66988757
Pro Number: 6 6 9 8 8 7 5 7
Position in the Pro Number: 1 2 3 4 5 6 7 8
Multiply each digit in the pro number by (10-position) in the number, to achieve a sum.

Using our example pro again:
6*(10-1) + 6*(10-2) + 9*(10-3) + 8*(10-4) + 8*(10-5) + 7*(10-6) + 5*(10-7) + 7*(10-8)
6*9 + 6*8 + 9*7 + 8*6 + 8*5 + 7*4 + 5*3 + 7*2
54+ 48+ 63+48+40+28+15+14 = 310
Take the Sum of the previous calculation and divide it by 11
310/11 = 28

(Actually, it's 28.181818, but since we're working with integers, we truncate everything behind the decimal).

Figure a remainder by multiplying the quotient by 11 and subtracting from the sum.
Remainder = 310 - (28*11) ---> Remainder = 310 - 308 ----> Remainder = 2
Check Digit = 11- Remainder
Check Digit = 11 - 2 ---> Check Digit = 9
Note: if the check digit is 10 or 11, need to subtract 10 from the Check Digit.

View 3 Replies View Related

Remove The Last Digit From Each Number, Turning It Into A 5 Digit Number

Mar 2, 2009

I have a column of 6 digit numbers in excel, and I need to remove the last digit from each number, turning it into a 5 digit number. No rounding, just simply remove the last digit. Each number is different. Does anyone know how to quickly and efficiently remove the last digit from each number? I can convert to alphanumeric string if need be...

View 4 Replies View Related

If / Then In A Macro - Changing 2 Digit Year Into 4 Digit Year

Jul 3, 2014

I need a macro where I can highlight a column and change all of the 2 digit years to a 4 digit year (actually, some of the 2 digit years are only 1 digit, e.g. "9" instead of "09").

I have an if then statement that I can use in the column after it, but I'd rather change the actual numbers in the original column, rather than adding another column (and having to keep the original, too).

The statement I had was:
=if(A1>=50,1900+A1,2000+A1)

I just copy dragged down to get the cell numbers for the rest of the column... but using A1 was just for an example, here, it's not necessarily going to be in that column. It needs to be just whichever cells I select.

It seems like it should be pretty simple, but I don't know how to word it in a macro.

Starting Column Example:
12

13

14

99

11

[Code] ......

For some reason I can't get rid of the borders...

View 6 Replies View Related

Convert 4 Digit Zip Code To 5 Digit Zip Code?

Apr 25, 2014

I have an address (city, state, zip format) in a cell. Some of the zip codes only have a 4-digit zip code which is the way the file was received. I know these zip codes have leading zero. How can I convert these to a five-digit code. Examples are as follows:

Waltham MA 2453
convert to 'Waltham MA 02453'

Boston MA 2210
convert to 'Boston MA 02210'

CEDAR GROVE, NJ 7009-1174
convert to 'CEDAR GROVE, NJ 07009-1174'

TEANECK CITY, NJ 7666
convert to 'TEANECK CITY, NJ 07666'

View 3 Replies View Related

Converting 2 Digit Year Into 4 Digit Year

Apr 15, 2008

I have 2 digit years (98, 99, 00, 01) that I need to convert to 4 digit years (1998, 1999, 2000, 2001). There is one year per cell. If it was simply a matter of adding 19 or 20 to the beginning of each, I could do that. But since there's a combination of both 19 and 20 that needs to be added and there all intermingled, I'm not sure how to do it.

Can a rule be written to add 19 to the beginning except if the current cell starts with a 0, then add 20? The highest year is 2008 (no 2010 to deal with).

Example:

98 --> 1998
99 --> 1999
00 --> 2000
01 --> 2001

View 9 Replies View Related

Min And Max In A Sequence

May 12, 2006

I have in column " A" 500 rows with numbers in random sequences each
sequence has random number of rows , each sequence is seperated with a blank
cell (the result of a formula) some sequences have zerrows included.
I need to find the lowest number in each sequence and put that number in
column

" B" I also need to find the highest number and put that number in column "
C"

eg:- A B C
4 2 10
6
2
8
10
blank cell
7 7 50
9
11
13
50
18
21
30
15
blank cell
3 1 17
5
0
1
0
0
17
6

some sequences have two or more of the same numbers , in case of two ore
more of the same numbers only one is needed

View 11 Replies View Related

Letters In Sequence

Jun 24, 2009

I would like to create a column with letters from alphabet in a sequence. If I write A and in cell below I put B then highlight the two cells and drag down I get a repetition of A and B. How do I get the following alphabet letters ie. C,D, E etc.?

View 7 Replies View Related

Get The Next Number In A Sequence

Aug 4, 2009

I have code that adds the content of a userform directly onto the next available row starting at column B, using:

View 3 Replies View Related

Next Number In Sequence

Nov 10, 2009

I have Excel 2003. I am trying to find the next number in a sequence of numbers. The number range is 1-59, and the sequence is 89 numbers that go like:

1
5
8
3
7
10
6
2
5
3
8
11
41,...(to the 89th number)

View 14 Replies View Related

How To Get The Longest Sequence Of 3s

Apr 2, 2012

How can I get the Longest sequence of 3's. E.g.

CA
1
2
3
5
3
3
5
4

View 2 Replies View Related

Sum Sequence On Certain Number

Apr 16, 2012

Need to find and then sum the sequence on a certain number. Using the number 1 in the example.

Example:
0
2
1
2
1
1
1
4
3
2

Answers: 1,3

View 9 Replies View Related

Fibonacci Sequence

Jan 5, 2008

I'm trying to write some code to calculate the value of a Fibonacci Sequence, at a random point in the sequence.

For example if I have 5, 15, 30, 50, 75, 105... and my random value is 3 it would return 30.

Being new to VB the only way I've of thought of to do this is a massive if then statement.

View 4 Replies View Related

Automatic Numeric Sequence

Jan 15, 2013

I have a dynamic worksheet containing a variable number of rows that I would like to have automatically numbered when I run my VBA script. I used Dave Hawley's code as follows, with a modification to begin at cell A2, but it doesn't seem to work, as it only numbers cell A2 and not the rest.

VB:
With Range("A2")
.Value = 1
.AutoFill .Range("A2:A" & RowTotal), xlLinearTrend
.Range("A" & RowTotal + 1).Clear
End With

RowTotal is just a variable that holds the results of a simple last row finder. How to make this work?

View 4 Replies View Related

How To Automate Sequence Of Numbers

Jul 25, 2014

I'm trying to automate a sequence.

I was gonna explain it but I couldn't make myself clear so I took a screenshot:

sequence.PNG

folder_type is what the user types, (for example, the letter "A"), and folder_code is a sequence that should auto-generate according to what was manually inserted in the folder_type field.

What formula could I use for this process?

View 6 Replies View Related

Identify Numbers In Sequence

Aug 23, 2007

I have a task to identify all the numbers in sequence in a worksheet, how do I do that?

Ex:
Column A
1
2
3
4
5
7
9
10
11
12
13
14
15
16
20
21
22

Desired output 1-5,7,9,10-16,20-22.

View 10 Replies View Related

Auto Fill Sequence

Sep 11, 2007

I am fighting with this for a longer time now and can't find a solution:

is it possible in Excel to generate a number sequence (to create a list for auto fill) representing numbers like this:

000001
000006
000002
000007
000003
000008
000004
000009
000005
000010
000011
000016
000012
000017
000013
000018
000014
000019
000015
000020

and so on till 001000

View 13 Replies View Related

Create An Alphanumeric Sequence

Sep 14, 2009

I want to create a 4 character alphanumeric sequence. The sequence is to be like this: a1a1-z10z10. If it's a number, increment 1 until you reach 10, then move to the next column, if it's a letter, increment a until z, then move to the next column. Excel's autofill feature doesn't seem to work well for me due to the letters involved, so if someone has a macro handy that would be great.

View 11 Replies View Related

Formula To Identify A Sequence?

Nov 29, 2012

formula that will produce the number sequence as shown in the third column of the table. The sequence starts at 1 and if the colour changes then the number is 2 and if the colour changes again then the number is 3 and so on. The part I'm having difficulty with is that if the name in the first column changes then the sequence must reset to the number 1 and become 2,3 etc. as above when the colour changes.

Peter
Blue
1

Peter
Blue
1

[Code]....

View 2 Replies View Related

Conditional Formatting In Sequence (every Ten 0 Zero)

Feb 22, 2013

I need to create a Conditional Formatting in a sequence (every ten 0 [zero])

View 4 Replies View Related

Entering Cells In Sequence

Mar 12, 2014

I have a column of values, and I want a column next to it that shows the value in every second cell in the first column, but right underneath. See below for an example of what I am trying to achieve. The actual column is 17000 cells so I cant do it manually.

12
24
36
48
510
612
7
8
9
10

View 5 Replies View Related

New Worksheet With Sequence Number

Jun 6, 2014

I have a problem to name correctly my new worksheet in order to obtain a sequence.

So my first worksheet' name is 3114

My macro is : [Code] ..........

And I don't know what I have to put after Name = ... to obtain the sequence, what means that the next worksheet is 3115, the next one 3116 etc.

I tried with Worksheet.Count but it puts the number of sheet starting from 1 ...

View 14 Replies View Related

Change Find Sequence

Mar 28, 2009

I want to change the sequence of find for the below code. I want to find the last entered row, instead of first entered. Now this code find first entered row.

View 2 Replies View Related

Average Numbers In Sequence

Oct 21, 2005

I have cells O1 to O300 numbers in random sequences of no more than 10

I need to average the 5 highest numbers in each sequence eg:

O P
1 2 16 (result)
2 20
3 4
4 6
5 14
6 12
7 8
8 10
9 16
10 18
11 blank cell
12 15 9 (result)
13 3
14 6
15 12
16 9
17 blank cell
18 blank cell
19 4 23 (result)
20 16
21 20
22 40
23 8
24 11
25 28
26 blank cell

down to 300 rows, the sequence of numbers can be from 1 to 10 but never
more than 10

I got a function : =IF(COUNT(O1:O10>=10,AVERAGE(LARGE(O1:O10,{1,2,3,4,5})),"
") but that works only for 10 numbers and not for less

View 11 Replies View Related

Instances That Occur In A Sequence

Mar 14, 2008

I have a problem, I have a formula which counts the number of instances that occur and assigns the value as 1 for every instance, however I want the formual to also recognise that if a number of instances occur in succession a value of 1 should also be assigned.

E.g. if a person is absent for 1 day the formula assigns a value of 1
if a person is off for 3 days in succession the formula assigns a value of 1

View 13 Replies View Related

Copying Formula Down In Sequence

Dec 11, 2012

I have two sheets in excel, one contains a list of names and the second is a basic lookup sheet for mail merge purposes.

Basically I want to write a formula in column A (of sheet 2) [current formula is =LabelNames!A2] and in column B the formula is =LabelNames!A3.

I want to drag these formulas down so each one jumps by 2... Ie:

=LabelNames!A2
=LabelNames!A4
=LabelNames!A6

View 4 Replies View Related

Sequence Number With 4 Condition

Nov 9, 2013

About sequence number with 4 condition...

code number (as text)
desired result
date
condition
cost ($)

'1003

1
31/12/2000
1
5

[Code] ..........

if "code number", "date","condition" and "cost" the same line of rows so "desired result" = 1 like code "1003" or so code "1005" = 5, otherwise if there is a no match/same condition "desired result" start from = 2,3,4,etc.......

View 2 Replies View Related

Sequence Adding Based On Name?

Jul 1, 2014

I want the numbers to increase based on the labels from a list, such as the first john chosen will get a 1 on the first cell on sheet 2, if john is chosen again the 2nd john will get a 2 on the next cell on sheet 2 and so on for the other names.

I tried to use IF(COUNTIF(D:D,D2)=1,LARGE(IF(D:D=D2,E:E)+1),1) but it didn't work out.

View 3 Replies View Related

Removal Of Leader Sequence

Dec 9, 2006

I need a macro, preferably a "sub" that will search a long text input and when it finds the first instance of the letters "GSH" in that order removing all previous text before it. The amount of text characters, letters, and order before the gsh will vary.

For example:

FGHYTIUGSHIYKIOLHY --> GSHIYKIOLHY

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved