Is there a way to create a SharePoint calculated column that returns a count of the number of entries in a list? So If I have 3 customers in my list with the company "Starbucks" I'd like the field to return "3"
|
|
|
|
|
|
|
I got something similar to work in a way similar to Niall. Basically, I:
I was left with just the footer, which displayed a filtered count for all the list items. I further customized the footer by taking out the shaded background. Finally, I exported this web part and imported it onto the page where I wanted users to see a total of items in the list (which met the criteria). |
||
|
|
|
|
You can get a Count of specific list items in an XSLT Data View To do this you will need SharePoint Designer. Right click on your SharePoint List view (ensure the list view contains the field you want to filter by) select convert to XSLT Data View. Then in the Data Source Windows select Data Source Tab and drag and drop the field you want to get a total on for the specific items into where you want it displayed in your XSLT Data View. Click on the numerical value that is showing you should get a lightening bolt icon, select the drop down and choose Count, then select again and choose Filter. Select "Click here to add a new clause" then choose your field name again and enter your unique value as Starbucks and click OK, you can repeat this process for other fields you want the totals on. You will now see the total number of Starbucks items in the list. |
||
|
|
|
|
Awsome Awsome solution. Thank You Sam. Lauren. when you create a lookup list make sure you click on the drop down and you will see the column something like this Companies(Count Related). I think this has to be lookup column from same list. I hope this helps |
||
|
|
|
|
I'm trying to accomplish the same thing but I cannot find the "Count Related" option as described by Sam. I have a SharePoint list called "Tasks" that includes a Lookup column called "Status" that links to another SharePoint list. I want to count the number of tasks with each different status. Thanks! |
||
|
|
|
(Edited some wording for clarity per suggestion from dariom). You may be able to get what you want with another list using a not-so-well-known variation of a lookup column. Let's say you have a list called Companies with values in the title column like "Starbucks", "Peets", etc. Now you also have the Customers list you refer to, but the "Company" column is a lookup column pointing to the title column in the Companies list. You can add a count very similar to what you described to your Companies list. Go to your Companies list, add a column of type "Lookup" referring to the Customers list and you'll notice that in the drop-down area where you define the lookup if you point back to the Customers list, you'll have a new option called "Count Related". This is here automatically because it recognizes that the Customers list has a lookup pointing back to this one. Select that Count Related option and now your Companies list will have a column counting how many customers are associated with that company. No coding, Javascript hacks, or anything. Just hidden SharePoint auto-magic. |
||||
|
|
|
As dariom said (damn my slow typing skills, +1!), only the current row can be operated on with calculated columns by default in SharePoint. There are a couple of documented workarounds involving SharePoint Designer or jQuery, though. |
||
|
|
|
|
No, I don't think there's a way to do this using the out-of-the-box calculated column. Some other ways you could accomplish this are:
|
||||
|
