Questions tagged [count]
The count tag has no summary.
27 questions
1
vote
1
answer
107
views
How do you show the count of a list at the top?
I understand how to do a COUNT on a column in a list. However it shows the count at the bottom and takes up real-estate on the page. I would like to show the total count of the current page at the ...
0
votes
1
answer
933
views
Get number capital letters in a string using PowerShell
I have a string. For now lets go with $string="mFN6jTPx?!". I would like to be able to count how many capital letters there are. I have tried using ($string -cmatch '[A-Z]').length but that ...
0
votes
1
answer
3k
views
Count values in SharePoint list and update separate list with count using Power Automate
I have a list in SharePoint called "List" that lists projects with their status. The Status column choices are Not started, At Risk, and Complete. I have another list called "Graph List&...
1
vote
2
answers
109
views
How to total the number of selected columns that have string data?
Within a SharePoint Online list, if I have a record that has 6 columns like so...
ID: #id of this record
Title: "my first test"
Step 1: "apple"
Step 2: "grape"
Step 3:
...
0
votes
1
answer
518
views
Out of box option for displaying Unique view count Over SharePoint Online library document properties page
We have a SharePoint online site. The default documents library has more than 2000 document. Now client wants to see the unique views count for the respective document he has opened in the DispForm....
0
votes
1
answer
404
views
Count duplicate entries SharePoint
I need a little help please.
I'm using SharePoint 2013, with no SharePoint designer (disabled by the administrator).
I have a list, in which we have duplicated entries in a column named Title. I need ...
0
votes
1
answer
401
views
Count-if column between two list in SharePoint
I have 2 lists on one SharePoint site. One works as a query log (I used a custom list instead of issue tracking) and a second one is a master data list with a RAG status.
What I want to achieve is to ...
1
vote
0
answers
175
views
Show the Total Count of the column value generated using SPFx Field Customizer
I have developed a Field Customizer Extension. This renders the item count based on the logic for each cell in the Document Library.
Now, I want to show the total of the count at the bottom of the ...
0
votes
1
answer
326
views
InfoPath 2013 Multi Selection List Count
I want to thank you in advance.
I've been doing the search and found something close but did not work.
I have a 'multi selection list box' created in InfoPath with 8 items in it.
The box is ...
1
vote
1
answer
219
views
What's wrong with the Recycle Bin (-1)
Why does the Recycle bin show -1 as its count?? This is causing much confusion from users, is this a bug? This particular bin contains 20+ documents but the count is obviously off.
1
vote
1
answer
1k
views
Web part list items count
I have a list built using web part. I want count of that web part list.
Scenario:
I have List A. Created list B and added web part into it which points to list A.
I want list item count of list B.
...
1
vote
3
answers
4k
views
Count of view items using rest api
I am trying to get count of items in a view of a custom list using SharePoint server 2016.I am calling web API for it.
Web api:
<site_url>/sites/DMS/_api/Web/Lists(guid'{xxxxxx-xxx-xxxx-xxx-...
0
votes
1
answer
723
views
Using Count values in another function for my Chart.js Pie Chart
Using Chart.js to display a Pie Chart.
However, I'm hard coding the data values.
Below is the entire code:
$(function(){
//Start Data Pull
//End Data Pull
//get the pie chart canvas
var ctx1 =...
0
votes
1
answer
57
views
Count to display in a page
I received this fix via StackExhange Sharepoint but I can't seem to locate it again for my post (sorry)...but it did work using CAML Query to count items in a list.I want to change one thing...I want ...
1
vote
1
answer
2k
views
How to get count of files Inside a subfolder- pnp-js?
I can get the count of files in a root folder using this
pnp.sp.web.lists.getByTitle("Test").items.getAll().then((allItems) => {
// how many did we get
console.log(allItems.length);
});
...