Is there easy way to create auto increment number?

Hello SharePoint Fam,
Is there a easy solution to have a auto increment column that just creates new number on each new item.
Wanting something like:
14-0001
14-0002
14-0003
14-0004
14-0005
Thanks n advance

If you need a simple auto increment column then you can use "ID" field which is already present in Sharepoint. 
It will increment in this fashion: 1,2,3,4...........
or
you can take field as "Calculated" and use formula (="14-" & [ID]) without parentheses.
it will increment in this fashion 14-1, 14-2, 14-3............
or
try this link...may be you will find something helpful here...
http://dlairman.wordpress.com/2011/01/10/add-a-unique-auto-incrementing-column-to-a-sharepoint-list/
***If my post is answer for your query please mark as answer***
***If my answer is helpful please vote ***

Similar Messages

  • Is there a way to create auto fill fields in an excel spreadsheet from AB?

    Hey, so I've got an Excel spreadsheet that I'd like to tweak so when I enter a name, the boxes next to it labeled Phone Number and Email will auto fill the information in from Address Book. I don't know if this is possible in Excel, I have a Address Label Widget that does it though.

    Being Applescriptable, you should be able to do that in Excel. MacTech magazine has a long article on applescripting Office. You might ask around in the Applescript forums or take a look at Macscripter.net.

  • Best way to implement auto increment in JPA.

    What is the best way to implement auto increment in JPA so that it will support all databases such as MySQL, MSSQL Server, Oracle etc. ? Or is there any way to set auto increment strategy in common place such as persistence.xml? Please help...

    All JPA strategies require something (like a table or sequence object) be in the database, with table sequencing being the most portable, though EclipseLink does allow custom sequence stratgies where you could use something else, such as the UUID. Sequencing is described here described here http://wiki.eclipse.org/EclipseLink/Examples/JPA/PrimaryKey with a custom UUID example shown here http://wiki.eclipse.org/EclipseLink/Examples/JPA/CustomSequencing .

  • Is there an easy way to create an portfoliopage on my site?

    I like to know how i can do this the best? Im not so good in Dreamweaver.
    this is my page where i like to put the portfolio in.
    Ive got a almost 10 documents wich i want to put on my page.
    i can make thumbnails from the documents for on the page.
    Looking forward to your answer..
    Regards

    Thank you very much. The last one youve send me looks the most what i have in mind. With some thumbnails and when you click on it you see a larger document.
    But it doesnt fit quite in the style of the site. You have an other example for me?
    Regards Brian
    Date: Sat, 7 Apr 2012 16:56:54 -0600
    From: [email protected]
    To: [email protected]
    Subject: Is there an easy way to create an portfoliopage on my site?
        Re: Is there an easy way to create an portfoliopage on my site?
        created by Nancy O. in Dreamweaver - View the full discussion
    You could arrange your thumbnail images in a grid and link each one to other HTML pages (view source to see the code)http://alt-web.com/TEMPLATES/Dark-Grid-II.shtmlhttp://alt-web.com/TEMPLATES/CSS-Semi-liq-p hoto-sheet.shtml Or you could arrange thumbnails in a grid and link to full size images with jQuery FancyBox (click on images)http://alt-web.com/TEMPLATES/Dark-Grid.shtml   ()__() (='.'=)(")_(") Nancy O.Alt-Web Design & PublishingWeb | Graphics | Print | Media  Specialists  http://alt-web.com/
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4320059#4320059
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4320059#4320059. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Is there any way to create a shadow in both sides of a box?

    Hi,
    is there any way to create a shadow in both sides (opposite) of a box? I just can create the shadow in one side..
    If not, is that possible in CS6?
    CS5.
    Regards

    You can definitely show an inner shadow on just one side of a rectangle.  You just need to turn the blur down to 0 to prevent it from leaking to the nearby sides.  Then set the angle to an exact multiple of 90, like 270 to put the shadow on the top side of the rect.
    This file has some examples: http://johndunning.com/fireworks/scratch/Shadowed%20Elements.png
    If you're trying to simulate a rectangle with different border colors or widths, this auto shape can make that easy: http://johndunning.com/fireworks/about/MultiBorderRect

  • Creating auto-increment field in SharePoint List

    In SharePoint, we can create the auto-incremental field by many ways, I am going to discuss two ways of doing it.
    Calculated field
    Item Event Receiver
    1. Using Calculated field:
    Using this we can accomplish it without doing any programing and it is a relatively simple way of doing it. By using “Calculated” column in SharePoint List we can create auto-increment field. We can accomplish this by creating a new column and choosing the
    column type as “Calculated (calculation based on other columns)”. And in Formula field, we have to enter [ID]
    In fact this will be using the values from “ID” field from SharePoint list that starts from 1.
    For example, if we want to start our auto-increment column from 100, we can modify the “Formula” field of Create New column screen, we can have to enter [ID] + 99
    For detailed info please follow the blog I wrote here: http://faisalrafique.wordpress.com/2011/03/19/creating-auto-increment-field-in-sharepoint-list/
    2. Using Item Event Receiver:
    By using this strategy, users have advantage to edit the existing values, we can also avoid it by making field read-only on feature activation. Using item event receiver, on ItemAdded event, we have to find the highest value among previously added items
    and then save the incremented value to current newly created auto-incremental column.
    For code of event reciever please follow the blog I wrote here:
    http://faisalrafique.wordpress.com/2011/03/19/creating-auto-increment-field-in-sharepoint-list/
    Happy Coding

    Use Sharepoint Designer to create a Workflow for the list containing the field to increment. For my project I had an Invoice field that I wanted to start with 1001 and increment from there so I made the following workflow to do this.
    In the new workflow screen in Sharepoint Designer create two actions in Step 1:
    Calculate Current Item:ID plus 1000 (Output to Variable: calc)
    then Set AutoIncrementNumber to Variable: calc
    This is just a guide. If you just want the auto-increment to start with 1 then you can just use this step
    Set AutoIncrementNumber to Current Item:ID
    Also, make sure you select the correct name for your field in the Workflow action instead of AutoIncrementNumber.
    Save the Workflow, close it, and then open it again in Sharepoint Designer. Check the box for "Start workflow automatically when an item is created." Save it again and then click on the Publish button to make it active on the sharepoint site. The value should
    now increment for each new item created in the list.

  • Is there a way to create a collection based on the "previous import"?

    is there a way to create a collection based on the "previous import"? that would make it easy to mobile sync the last import to my ipad, and do further picking/rejecting while away from my laptop.

    well, yes, of course i could do it that way. i guess i wasn't specific enough. is there a way to create a smart collection, with the photos in the "previous import" as members of the smart collection.  earlier i mentioned about using this smart collection to mobile sync with my ipad, to do further flagging.
    so my intention, use a smart collection to mobile sync with my ipad, and the smart collection to include the photos from my previous import.
    i guess another way to ask the question, is there a way to create a smart collection, by using some rule or condition in the smart collection, to automatically include previous import photos.
    the documentation says that "previous import" is a collection, even though it shows up in the catalogue side bar section. but i see no way to choose that collection when making a smart collection.
    jd

  • Is there a way to create a formula to sum all fields in which a secondary field is a specific string?

    I would like to be able to create a spreadsheet with several different ways of looking at financial results.
    So, while I might have my typical budget prepared by functional area, I would also like to identify whether a line item is a weekly, monthly, or annual expense. So, column A will include a functional header
    Column B the amount itself
    Column C will be the frequency.
    Is there an easy way to create a Sum Field that pulls the info from all fields in which column B = Weekly?
    More importantly, is there a way to do this across multiple tables within a single sheet? I am breaking out divisions into individual tables and performing similar tasks for each division, and then summarizing for the full organization in a separate table.
    I am using Number '09 2.1
    Many thanks,
    Keith

    The more generalized solution is to modify the Summary Table as follows:
    - Add a header row to give the name of the source table for each column (the name you give each table should match the name in the header for each column)
    - use the following formula in B2:
    "=SUMIF(INDIRECT("'"&B$1&"' ::"&"Frequency"), "="&$A2, INDIRECT("'"&B$1&"'::"&"Amount"))"
    fill down, then select B2 - B4, then fill across
    In the "Total" column for the Summary table paste the formula:
    E2:  "=SUM(B2:D2)"
    Fill down
    I hope this helps
    Wayne

  • Is there a way to create editable tags in a dashboard section?

    Is there a way to create editable tags in a dashboard section?
    The requirement is - User should be able to enter comments in a edit box for a section in a dashboard and save it. For other users, this should show up as a non-editable comment while for the user it should be editable box.
    Example: In a report in a section on dashboard for Supplier Trends, a Purchase Manager should enter the commments -" This weeks trends show no issues. Next week watch out for supplier X". For everyone other than him, this should show up as comments.
    1. Is there a way to achieve this functionality?
    2. Can this be achived using write back option?
    3. Or will this require java scripting?
    Thanks

    Hi,
    If you want to have a better experience of your music files, how about just use WMP to enjoy all the songs, you can
    sort by Artists or Album or whatever you like. There, you can have a better and easier way to organize all your music
    files.
    For Windows Explorer, did you mean
    medium size icons in artist, while list icon in albums, you can just organize as you want like the following screenshot.
    If I'm missing something, please free contact me.
    Regards
    Yolanda
    TechNet Community Support

  • Is there a way to create SQL Dev reports with validated binds?

    Is there a way to create SQL Dev reports with validated binds similar to the way user defined extensions can have <prompts> with a <value> that is a SQL statement returning a list of possible values?
    This sure would make select appropriate values for binds in reports easier and less error prone.

    Maybe a forum search on "Windows registry" would turn up some useful things. You're not the first to ask this. You might save yourself and everyone else some time if you'd simply do that.

  • Is there a way to create folders on one iPad and sync the folders to multiple iPads?

    Is there a way to create folders on one iPad and sync the folders to multiple iPads? I have 23 iPads and I want to have all the folders match for easier access for students.

    Here is a possibkle workaround, assuming the iPads are all starting out with the same initial content on them:
    Backup that iPad to each computer you will be using. Then restore from the backup (only takes a couple minutes). Then rename the other 22 iPads.

  • Is there a way to create a picture from video in iMovie 11

    Is there a way to create a jpg picture from video in imovie?
    I have noticed several work arounds which are not so easy. This was previously a feature that was very helpful to put in stills in the drop zones in idvd from your video project. Only makes sense. Why has it been removed?

    See my post here.
    https://discussions.apple.com/docs/DOC-3231
    We are all just users here. Nobody knows why Apple includes features or not.

  • Is there a way to create a commentary file for the summary screen?

    I am not seeing the summary screen in the list of commentary files in the \Development\include\commentary\en-CA\screen path. Is there a way to create a commentary for the summary screen?
    Thanks all.

    thanks Kristy,
    I'm not sure of the best way to add any requests we have for future releases.
    If there is one, let me know what is best.
    Here is what I want to add.
    In the properties file, one can set decision report preferences for an attribute - for invisible and silent.
    I wish we could also set preferences for bold, and given that, I guess it makes sense to be able to set preferences for italic and underline
    While these can be addressed through custom properties and XSLT, it obviously would be easier for the modeler to be able to select the attribute enhancement in the properties file. Given that decision reports can get very long, and there are attributes which might be better highlighted in some way, this would be a great approach.

  • Is there any way to create backing bean, After page gets created?

    Hi
    Any one can please answer to my quick question !!!
    Is there any way to create the backing bean ,after a jsf page gets created using ADF ..?
    When i first time created the jsf jppx page i unchecked the option to generate backing bean, but later some time I would like to have backing bean for the newly created page. so is there any way to create backing bean ...?
    Thanks in Advance

    Have your page in the visual design mode then go to the Design->Page Properties menu and you'll be able to select auto-bind on the second tab.

  • Is there any way to create a HTTP_AAE Receiver without a path in NW PO 7.31

    Hi ,
    Does anyone know how to create a HTTP_AAE Receiver without a path??
    We are in a phase of migrating Interfaces from PI 7.1 to PO 7.31(Java Only).
    For one of the Interface in PI 7.1 there is a RFC Destination for vendor communication through HTTPS connectivity  :
    TargetHost: IP Address
    Post: value
    Path Prefix: Blank
    During migration  requirment is to keep the Path field BLANK of the Communication Channel,however since  PO has mandatory path field   a "/" is been provided, because of which data post fails.
    PI:  https://IP:9443
    PO:  https://IP:9443/  (Since Path Prefix is mandatory)
    As per my understanding The data is supposted to be posted directly to the IP (https://IP:9443) however it is getting posted to (https://IP:9443/) where the service is not available. For Reference attached relevant screenshots.
    Is there any way to  create a HTTP_AAE Receiver without a path. Need ardent support and suggestions
    regarding this.
    Regards
    Riju

    Hi,
    For Service auto- PO from PR, you need to activate Automatic Purchase order creation for Service requisitions in ML91 t.code.
    Note:
    For material :automatic PO creation from PR, follow the steps.
    1) Material Master purchasing view tick automatic PO check box
    2) Vendor Master purchasing view tick automatic PO check box.
    3) Maintain Source list for Vendor & Material.(ME01)
    4) Maintain Purchase Info Record.(ME11)
    5) Create a Purchase Requisition.(ME51)
    6) Use T.Code: ME59 & execute for PR for vendor, you will be able to create automatic PO.
    During creation of PR , select check box of Source Determination in the 1st screen of ME51
    Ensure that Purchase Info Record should be there.
    If you have more than one vendor then fixes only one vendor in source list.
    Regards,
    Biju K

Maybe you are looking for

  • Remove null values from query

    Hi All; Below is my query and the output and i need to remove null values from the output Any help regarding same is much appreciated Thanks ; WITH CTE AS select a.opportunityid,a.new_entrypoint_displayname,c.parentcustomerid,c.contactid,c.fullname,a

  • Converting Japanese two Byte Character...

    Hi, I am doing a Scenario outbound from R/3. I am triggering the message via proxy using japanese language and sending to XI. In XI, we are getting the Mapping Error. Some records in the message contains single byte characters and some records having

  • My problem is simple: my recently changed Password does not work

    my problem is simple: my recently changed Password does not work

  • How to run DOS command in Java environment?

    Can i run DOS command in Java environment? I did like this: Runtime r = Runtime.getRuntime(); r.exec("cmd.exe"); r.exec("set classpath=%CLASSPATH%;.\\tmp") but failed. However if I run the java command, it runs successfully. r.exec("javac Test.java")

  • Please help - Dreamweaver Image Map Tool/Outlook for Mac

    Hello: I was wondering if you could help me navigate through an issue I am having with the image map tool.  I have created a design file is PSD, saved it as a JPG, then transferred it into Dreamweaver to link the design to a web page.  However, I wou