Is there a limit to custom views that can be created on a list?

As the title says, is there a limit to the number of custom views that can be created on a SharePoint list?  I did a few online searches and someone mentioned 50, but one of my list already has more then 50 custom views so I'd like to know what the
true limit is.
Anyone know?

The only hard limit is to the number of views that can be shown in the drop down on the UI which is 50 (first 50 actually). I would agree with the assessment made here that the actual limit might be hypothetical but it all comes down to the performance in
rendering and retrieving these views.
https://social.msdn.microsoft.com/Forums/sharepoint/en-US/8a0f9d4a-626a-4a54-916a-a1e347835c5e/what-is-the-limit-if-there-is-one-on-the-amount-of-views-that-can-be-on-a-single-sharepoint-list?forum=sharepointgeneralprevious
I would suggest re looking at your approach to address the requirement by creating these many views and whether something else (dynamic pages, metadata navigation, term navigation, content search web parts etc.) can address the actual requirement
and in process actually improve page performance.
Thanks, Ransher Singh, MCP, MCTS | Click Vote As Helpful if you think that post is helpful in responding your question click Mark As Answer, if you think that this is your answer for your question.

Similar Messages

  • Is there a HP color laser printer that can define custom-size media sizes in WINDOWS?

    Is there a  HP color laser printer that can define custom-size media sizes in WINDOWS?

    Have you tried downloading and installing the drivers from here?
    http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&cc=us&prodTypeId=18...
    //Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
    I am an HP employee!!

  • Is there any limit on number of firefox profiles that can be created?

    Is there any limit in the number of firefox profiles that can be created?
    My issue is
    I am currently doing selenium webdriver automation in linux for a device. There are 50 devices of same kind and framework will pickup a device depending on availability. I need to by pass unsigned ssl pages. I am using firefox 14.
    I have implemented following but it is not consistent.
    everytime a device is chosen
    adds cer of device to the cert file in firefox profile
    but I am getting sec_error_bad_signature very frequently.
    So I started recreating cert [delete and create if by opening firefox] file for every run.
    Now this is posing a problem if multiple devices are run at the same time. Hence I want to create separate firefox profile

    Not that I have ever found. And at one time I had over 60 Profiles, but after I hit 20 Profiles listed in the profiles.ini file the launch time for Firefox became noticeably longer on WinXP. With remote Profiles, not listed in the profiles.ini file and launched strictly from command line there was no impact on launch time.
    How or if that relates to Mac OSX is beyond my knowledge, never owned used a Mac.

  • Is there any limit on Number of items that can be created in SBO2005B

    Is there any limit on Number of items that can be created in SAP Business One 2005B.
    We are working for button manufacturer.
    Each button will have type,color, size, thickness.
    There are about 100 types, 40 colors, 30 sizes, 10 thickness, 500 models.
    It looks to be approximately above 30lacs item codes has to be created.
    Is there any performance issues or any other known issues towards the large item lists.

    Hi,
    There is no real limit on the number of items you can create (well, the item code is a 20 character key so theoretically the limit is the total number of possible combinations of letters and characters in that key).
    Performance can be an issue with a large inventory, as well as database size (particularly if you have a large inventory and a large number of warehouses). Some issues such as the speed of lookups can be avoided by changing system settings but other issues such as the speed of inventory reports are inevitable going to take longer for larger inventories.
    Have you done any research on looking for SBO addons for the clothing industry? It might be worth searching the CPSN for such addons (ie ones that can deal with sizes, colours etc) as these may help greatly in keeping the number of stock items down to a minimum.
    Kind Regards,
    Owen

  • Is there a limit for the apps that i purchased or i can purchase as much i want? and how can i know the capacity it's taking? Thank you

    Is there a limit for the apps that i purchased or i can purchase as much i want? and how can i know the capacity it's taking? Thank you

    Yes you can buy whatever you want if your credit card is in good standing.
    Before you buy, read the size of the download in iTunes/App/iBook Store.
    Rule of thumb, you need to reserve about 10% of your total space.

  • HT4962 Are there any movies or tv shows that can be played with the Touch?

    Are there any movies or tv shows that can be played with the ITouch?  Attempted to download a tv show, however was advised it was not supported.  Is there a way to configure the show to be played?

    See:'
    iTunes: Frequently asked questions about viewing and syncing videos
    iTunes: May be unable to transfer videos to iPhone, iPad, or iPod
    There are third-party converters like the Free HandBrake program.

  • Is there a maximum number of pictures that can be uploaded to create a photo book?

    Is there a maximum number of pictures that can be uploaded to create a photo book?  I can't seem to drag anymore pictures to my current project.

    I have over 200 photos in my book and it was accepted. There is a limit on each widget though. The interactive widget seems to have a limit of around 30 or 40.

  • Is there any way to an index that can be used to include the "OR condition "?

    Hello I have some questions.
    The test was conducted in the following procedure .
    create table test
    c1 varchar2(10),
    c2 varchar2(10),
    primary key(c1)
    create index test_idx1 on test(c2);
    Command> explain select * from test where c1 = 'AAAAAAAAAA' or c2 = 'AAAAAAAAAA';
    Query Optimizer Plan:
      STEP:                1
      LEVEL:               1
      OPERATION:           RowLkRangeScan
      TBLNAME:             TEST
      IXNAME:              TEST
      INDEXED CONDITION:   <NULL>
      NOT INDEXED:         TEST.C2 = 'AAAAAAAAAA' OR TEST.C1 = 'AAAAAAAAAA'
    Command>
    Command> explain select * from test where c1 = 'AAAAAAAAAA' and c2 = 'AAAAAAAAAA'
    Query Optimizer Plan:
      STEP:                1
      LEVEL:               1
      OPERATION:           RowLkRangeScan
      TBLNAME:             TEST
      IXNAME:              TEST
      INDEXED CONDITION:   TEST.C1 = 'AAAAAAAAAA'
      NOT INDEXED:         TEST.C2 = 'AAAAAAAAAA'
    Command>
    By including the "OR condition " in this test does not use the index.
    Is there any way to an index that can be used to include the "OR condition "?
    Thanks.
    GooGyum.

    A database cannot in general use indexes in this way for an 'or' involving two different columns. However, for this specific example one can easily rewrite the query using 'UNION' to use the relevant indexes while still giving the same (correct) result:
    Command> explain select * from test t1 where t1.c1 = 'AAAAAAAAAA' union select * from test t2 where t2.c2 = 'AAAAAAAAAA';
    Query Optimizer Plan:
      STEP:                1
      LEVEL:               1
      OPERATION:           RowLkRangeScan
      TBLNAME:             TEST
      IXNAME:              TEST
      INDEXED CONDITION:   T1.C1 = 'AAAAAAAAAA'
      NOT INDEXED:         <NULL>
      STEP:                2
      LEVEL:               2
      OPERATION:           RowLkRangeScan
      TBLNAME:             TEST
      IXNAME:              TEST_IDX2
      INDEXED CONDITION:   T2.C2 = 'AAAAAAAAAA'
      NOT INDEXED:         <NULL>
      STEP:                3
      LEVEL:               1
      OPERATION:           OrderBy
      TBLNAME:             <NULL>
      IXNAME:              <NULL>
      INDEXED CONDITION:   <NULL>
      NOT INDEXED:         <NULL>
      STEP:                4
      LEVEL:               2
      OPERATION:           UnionMergeSort
      TBLNAME:             <NULL>
      IXNAME:              <NULL>
      INDEXED CONDITION:   <NULL>
      NOT INDEXED:         <NULL>
    Maybe you can apply a similar trick? If you know there is no possibility of duplicate rows then you can further optimise this (in terms of performance) by using UNION ALL.
    Chris

  • Is there a max number of names that can be put into Contacts

    is there a max number of names that can be put into Contacts and still have the app work well?

    Yes, there is. It's how many contacts your hard drive can take. So you can fill up the entire computer with nothing but contacts until your HDD/Flash has no space left. So if you have 250GB, it'd be less than if you had 500GB and you'd have more on 750GB.

  • HT5098 How can I read on my Apple Arabic files of Times New Roman or Arial in PC? when I get the files the Arabic letters are separate and not joined. Is there a common font in Arabic that can convert the PC Windows files to  my Apple?

    How can I read on my Apple Arabic files of Times New Roman or Arial fonts made in PC? when I get the files the Arabic letters are separate and not joined. Is there a common font in Arabic that can convert the Arabic  PC Windows files to  my Apple?
    The same with email messages ,
    And when I get Power Point files made in PC Windows, they are like PDF, not Power Point!
    Anybody with a good suggestion?

    Yewtree wrote:
    when I get the files the Arabic letters are separate and not joined
    Do not use MS Word for Mac, it does not support Arabic.  Instead use Mellel, TextEdit, Nisus Writer or OpenOffice.  Try the font Geeza Pro if others do not work.
    What are you using to read email?
    What are you using to read powerpoint?

  • Is there an unlimited music download package that can be purchased or do all downloads have to be bought individually?

    Is there an unlimited music download package that can be purchased or do all downloads have to be bought individually?

    There is no subscription model for iTunes. You purchase the songs you want individually.
    (58812)

  • Is there a text to speech app that can read text books to me?

    Is there a text to speech app that can read text books to me?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    You don't need an app for that text to speech is biult into OS X.
    http://osxdaily.com/2010/03/28/how-to-make-your-mac-talk-text-to-speech/

  • Apple tv 1st generation won't switch on? No lights but cable works. Is there an internal fuse or battery that can be changed?

    The apple tv 1st gen was updated and then stopped working. I made the mistake of taking to a local repair shop rather than apple and left it with the guy who was working there who said he'd get the repair guy to take a look. when I returned he said the repair guy didn't do apple tv's only phones iPods etc and I took it away. Same device etc and doesn't look to be tampered with, but then again how would I know?
    What could be the problem? Is there an internal battery or fuse
    That can be replaced? Is this costly? Or am I snookered? Thanks
    D

    If the hardware is dead then replacing the device is the only option.  A new one is $100.  What did you mean by "but the cable works"?

  • Is there a limit to how many songs can go into a playlist?

    been adding songs to a playlist but its not adding them - is there a limit to how many songs can into a playlist

    specialeddie wrote:
    is there a limit to how many songs can into a playlist
    No.
    tt2

  • Is there a limit to how many people can share a private Calendar?

    Is there a limit to how many people can share a private Calendar?

    specialeddie wrote:
    is there a limit to how many songs can into a playlist
    No.
    tt2

Maybe you are looking for

  • Make a flashlight App for Windows Phone 8.1 (TorchControl not supported)

    I want to develop a simple flashlight app for Windows Phone 8.1 (non Silverlight). I used the TorchControl but it returns a false when i tried to run on my Device Here is the code i Used private async void SwitchOn(object sender, RoutedEventArgs e) v

  • Error while Retrieving view data  from database

    I am running an application ,in which I have used Apache Derby as a backend with the Hibernate mapping to achieve Object Oriented mapping. I have created one view from which I want to retrieve data. When I query the view as a VIEW, I am able to achie

  • Having problems downloading dreamweaver, comes up with error 50

    I'm a student and is having, problems downloading dreamweaver, it comes up with error 50, when ever finish downloading, could someone come back to me, I need to download urgently,  Kind Regards Miss Shaw.

  • Import/export of PDF files via iPad USB port - Apple please!

    I am writing here in the hope that some Apple representatives will read it. I am a scientist working for a large pharmaceutical corporation. In my work I read and annotate a lot of publications. Since forever I have been doing this by printing out pu

  • Three way switch

    I have three settings that I want to choose from. Is there a way to have a switch with three settings?