Making first two digits of all cells increment one unit

hi friends
i am not expert in MS Excel & i need an urgent help.
i had created a long excel sheet in Excel 2013 which i paste a part of that sheet here:
the list is very long.
now for some reasons, i have to edit this sheet so that in all cells, the first two digits from left increment one unit, as i have manually done that in the following figure. ( note: i don't want the color get read. i changed the color only to better view)
the problem is that i don't do that manually because there are hundreds of cells & that takes long time.
please introduce me all the methods which i can do that at once. (the format of all cells is text).
really thanks in advanced

Use this formula, starting in row 1 and copy down. Copy the result, use paste special to paste as Values over column A. Delete the formula.
=TEXT(LEFT(A1,2)+1,"00")&MID(A1,3,99)
cheers, teylyn
Hi teylyn
sorry for being late
that's Great.thank you very very much, really helped me.
best wishes for you
regards

Similar Messages

  • Dial tone after first two digits are dialed

    I was just made aware that one of our sites when dialing out (local, LD, TF, etc) receives dial tone after dialing the first two digits of any number.  They can continue to dial the number and will call out.  I am trying to understand where the dial tone is coming from after the 2nd digit is dialed.  Any idea's?
    CUCM 8.5
    2821 Gateway - MGCP - T1PRI

    I absolutely agree with Aaron's statement that ALL route patterns need to have the 'provide outside dial tone' checked on all applicable route patterns.  I would also like to note that any dial plan overlap with those route patterns would also cause delay in secondary dial tone.
    For example if you dial 9 to get out and a dial-able extension gets added accidentally to a phone that also starts with a 9, that could cause similar issues.
    So after checking route patterns first and if all that looks correct, I recommend Call Routing -> Route Plan Report, to search for ALL numbers that start with your outside access code.

  • To skip the first two Digits of the Char in Query

    Iam using County code which is the attribute of Vendor in free-chars of my query. In back-end iam doing some enhancements for this county code and populating the county codes values with region. (For example if the country code value is 021 in back end iam populating by concatenating with region value. so the value in the back-end is 05021.)
    When i run the query the key of county code value i see is 05021. But i need to skip the first two digits in county code and should display in the result. Is there any way to skip the first two digits for the county code values.
    Thanks in Advance
    Sudhakar

    Hi Sudhakar,
    Pls go through the link:
    Remove the last two charecters from right
    Thanks and Regards,
    Ramki

  • I am trying to install windows 7 to my Macbook pro with bootcamp but every time I open bootcamp I am only able to check the first two boxes but not the third one saying "install or remove Windows 7", any solutions ?

    Hi, I am trying to install Windows on my MacBook Pro with bootcamp. Every time I open bootcamp I am only able to check the first two boxes but not the third one saying "install or remove Windows 7". I did this before using the same computer and the same hard drive so I am not sure why this is happening now but did´t happen then. Any solutions ?

    Was your Bootcamp info.plist manipulated to change any options?

  • List files in numeric order past the first two digits

    I scanned docs onto a usb stick & saved as pdf files using an 8 digit date.  When I go to open the files they are only in order for the first 2 digits.  How can I get adobe to put them in order using all 8 digits so that they are listed in date order including day & year?

    The OS won't sort by date like that. If you look, it IS sorting "numerically" as the "dates" are in order numerically from smallest to largest.
    What I do to sort by date is use this format "YYYYMMDD"

  • First two digits

    Hi there!
    I manage a directory of former students of my school.
    Users who want to register must indicate in the form the year
    they entered the school.
    Alas, some of them enter bad years, like "0972" instead of
    "1972" or "0674" instead of "1974" !!!
    Inside a general Validation function, I already have an Array
    using different validating functions (one for each Field) into
    which I use "push" to enumerate different mistakes and prevent them
    with warnings and disabling of the Register Button. Like this one:
    validatePromo = function () {
    if (_root.promoField.length<1) {
    errors.push("- You MUST indicate the year you entered the
    school.");
    if (_root. promoField.length<4) {
    errors.push("- Year must be four digits long.");
    if (promotion<1925) {
    errors.push("- Enter 1925 as promotion year.");
    What I don't know is how to write the if statement to force
    user to begin the year string with 19 or 20.
    Could you please tell me ?
    Many thanks in advance,
    Regards

    quote:
    Originally posted by:
    GWD
    @Kees Kist : You're right. But I think the idea here is to
    get a list of errors. Whether the entry is a valid number probably
    should be the first item in the list.
    Probably its just better to check if the year is between 1900
    (or some minimum) and the current year. It would be much simpler.
    You are right. The idea is to get a list of errors.
    And when the list is empty, the register button is activated.
    I gave your afore mentioned solution a try.
    I voluntarily entered wrong dates like, for example, "0674".
    I didn't get the century error ("- Century range error.")
    listed... even if I included
    checkCentury();
    in the list of the functions to be run inside my general
    validateForm function...
    Any clue?
    Anyway, thank you very much to both of you for the time you
    spend solving my problem!

  • How to capture first two digit in a number

    Hi,
    I have numbers with differeent lenth in a variable How to capture first two digit??
    Thanks.

    Hi,
    We can achieve that using the following methods:
    DATA : loc_1  type string,
                loc_2(2) type c.
    loc_1 = '123423428340923990'.
    loc_2 = loc_1+0(2).
    Here you will get only the first two digits.
    You can use move statement also.
    MOVE LOC_1(2) TO loc_2.
    If you are having mixed string with characters and digits mixed together i.e. like this 'test01test03sample01'.
    You can so that using this method.
    data : lv_length type I.
    loc_1 = 'test01test03sample0'.
    LV_LENGTH = STRLEN( loc_1 ).
      DO LV_LENGTH TIMES.
    *&-- Read from first string validing the numeric fields and move your first two digits to the required variable --&*
      ENDDO.
    Hope it will be useful.
    Regards,
    Sakthi
    Edited by: Sakthi Saravanan C on Oct 8, 2010 6:45 PM

  • How can I pull info into a report using just the first two characters of that field?

    I am trying to pull a total cost based upon locations in a particular area(s). Can I get the formula to just do this based on the first two characters of that field?
    Here is what I have so far:
    if {PACKED.LOCATIONS.NEXT OPERATION} = ["xx"] THEN {Job.Total_Price}
    Packed locations is a table I'm pulling from and the column I want just the first two digits is the the Next operation. Once this meets the "xx" (whatever location) then give me the total price from the Job table.
    This works for one or two orders, but then blows up when I do 10 or so.

    Hi Steve, assuming that Next Operation is a string field...
    Create a new formula and place it in the field where you see the {Job.Total_Price} field (Detail or Group depending on your report) with the formula:
    whileprintingrecords;
    global numbervar TotalValue;
    if len({? Replace me}) <= len({PACKED.LOCATIONS.NEXT OPERATION}) then(
    if left(ucase({PACKED.LOCATIONS.NEXT OPERATION}),len({? Replace me})) = ucase({? Replace me}) then
    TotalValue := TotalValue + {Job.Total_Price}
    TotalValue;
    You can go ahead and suppress that field.
    Create a new formula to place where you want to view the summary using the formula:
    whileprintingrecords;
    global numbervar TotalValue;
    This method allows for a higher degree of flexibility and you can search for the first x characters of that field instead of only the first 2 characters

  • We just moved from the United States to Costa Rica.  The first two days my mac worked great.  Then all of a sudden I was trying to use a game application and the screen went black and there is a white cursor which I can move around, but I can't escape it

    We just moved from the United States to Costa Rica.  The first two days my mac worked great.  Then all of a sudden I was trying to use a game application and the screen went black and there is a white cursor which I can move around, but I can't escape it. When I restart it seems okay and I see my main screen, but only for a second and then it goes black again. 
    This computer was brand new in June.  Is it the humidity???   What can I do.  Please help!!!!

    No guarantess but try smc and pram resets,

  • In imovie, I have greenscreen clip.  First I want to change background to solid color THEN add a picture within picture.  When I try to stack all 3, I get two but not all three.....help!  thanks!

    in imovie 10.0.2, i have a green screen clip.  first i want to change background - solid color probably - but then i'd like to also add a picture within picture along side the video....have attempted to "stack" all three, and can get two out of three but not all three....what's the trick?  thanks!

    In iMovie you can only do two at a time. So the work-around would be to do the green screen/change background color part. Then Share this. Then import this piece back into an event. Then add the picture in picture.
    In Final Cut Pro X, you could easily do what you are describing.
    The main reason is that iMovie does all rendering in one pass. Final Cut Pro X allows multiple renders as you go along, so you can do much more complex effects.

  • Downloads do not appear all (only the first two) in the download statusbar (could be a ff19 or downloadhelper or unmht problem)

    downloads do not appear all (only the first two) in the download statusbar (could be a ff19 or downloadhelper or unmht problem) and none in the download window
    used ff19
    with
    Download Statusbar v0.9.10 by Devon Jensen
    UnMHT v6.2.0 by http://www.unmht.org
    DownloadHelper v4.9.14
    had to revert to ff18.0.2

    Make sure that you do not run Firefox in (permanent) Private Browsing mode.
    *https://support.mozilla.org/kb/Private+Browsing
    *Tools > Options > Privacy: Use custom settings for history
    *Deselect: [ ] "Always use private browsing mode"
    Did you try to disable other extensions?
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • When I run the cursor over a template it shows several pages but when i select the document it only brings up the first two pages to edit. How do I see them all?

    When I run the cursor over a template it shows several pages but when i select the document it only brings up the first two pages to edit. How do I see them all?

    Skimming the templates in the Template Chooser shows you all of the pages available in the template once you open it. You can insert the one(s) you want, even more than one of any of them. Most users don't want or need all of the different pages, especially when they start the document.

  • Numbers: two sets of numeric data in one cell. Delete, clear all deletes one set only. Cell is not "locked"  Ideas?

    Numbers: two sets of numeric data in one cell. Delete, clear all deletes one set only. Cell is not "locked"  Ideas?

    You will really need to explain in a little more detail what you mean by "two sets of numeric data in one cell".
    Also, is this Numbers for OS X? You are in the iOS forum.

  • I have just owned a macbook pro and trying to learn things since i have all along used windows laptop. My first question is : when there are two files i am working together, one above the other on screen, how you switch over between the two with key ?

    I have just owned a macbook pro and trying to learn things since i have all along used windows laptop. My first question is : when there are two files i am working together, one above the other on screen, how you switch over between the two with key ?

    Hi...
    Mac OS X keyboard shortcuts
    Control-F4
    Move focus to the active (or next) window
    Shift-Control-F4
    Move focus to the previously active window
    By the way...  since you are new to Mac, click a clear space on your Desktop. You should see "Finder" top left corner of the screen in the menu bar.
    Click Help then click Help Center
    As an example type in    keyboard shortcuts
    You can use the Help menu for almost any application on your Mac.
    Apple - Find Out How - Mac Basics
    For held switching from PC to Mac >  Apple - Support - Switch 101

  • HT5961 I want to receive the verification code for the keychain but I was sent to unknown number because the last two digits do not represent my phone number

    I want to receive the verification code for the keychain but I was sent to unknown number because the last two digits do not represent my phone number, so how can I change it to receive it on my cell phone ?

    I found this in the iCloud Keychain FAQs:
    How do I set up iCloud Keychain on a new device if I don't have one of my other devices to approve from?
    If you don't have access to any of your other devices that are using iCloud Keychain, you can still set up iCloud Keychain on another device if you have these items:
    - Your iCloud Security Code
    - The device that is using the SMS-capable phone number you provided when you first set up iCloud Keychain. A verification code is sent via SMS to this phone number. If you don't have access to this number, contact Apple Support, who can verify your identity so that you can complete setup on your new device.
    - If you have these items, follow the iCloud Keychain setup steps documented above. Your iCloud Keychain will then be pushed from the cloud to the new device.
    So it seems that you would have to directly contact the Apple Support: http://www.apple.com/support/icloud/contact/

Maybe you are looking for