count
8 TopicsCollect count of emails sent to ALL Distribution Groups in ExOL
Hey Team, I am looking for PowerShell assistance, such as exporting a list of all distribution groups and measuring how many messages were sent to each DG in the past 10 days. Basically, how can I combine "Get-DistributionGroup -ResultSize Unlimited | Select-Object Name, DisplayName,GroupType,PrimarySmtpAddress | Export-csv c:\temp\DistributionGroupReport.csv -NoTypeInformation" and "Get-MessageTrace -StartDate (get-date).AddDays(-10) -EndDate (Get-Date) -RecipientAddress email address removed for privacy reasons | measure-object | Select Count" to a single csv, if possible. Thanks.110Views0likes1CommentHow to count and sum "Condtional formatting" cells by color in Excel 2010?
I installed few add-ins for counting "Conditional formatted" cells but all are generating an instant (one-time) numeric result by activating that command. Also, I tried a code which gives an instant counting of 1 picked color without a total sum of all other colors -in my case 12 colors in a matrix. ("How to use the code to count colored cells and sum their values" - https://www.ablebits.com/office-addins-blog/2013/12/12/count-sum-by-color-excel/ ) My question is: Is there any functional code (or other aproach) which can count and sum all cells by "Conditional formatted" colors, on one sheet, and that the generated result is linked through common formulas? That can be updated/refreshed/code run during the work process as a complete overview of colors of a matrix (and not by picking every color every time as I mentioned). Thanks in advance!Solved283KViews1like181CommentsQuery based pie charts in Azure DevOps - how do I display a percentage rather than a count?
Hi, I created several charts to track the progress of bugs and test cases. I will use the following two as examples: 1. Open Bugs by State: please reference attached - this chart shows the count of open bugs in each state. 2. Test Case Results by State: please reference attached - this chart shows all the test cases created, pivoted by state. Is there a way to display percentages for each pie slice, rather than the count? For example, in the Open Bugs by State, rather than showing Open = 18, can I display "72%" (18/25)? Right now when I configure the chart, I see the "Aggregation" option, but this only allows me to choose "Count". Do I need to update my queries somehow to get a %? Thank you for the assistance!4.7KViews0likes1CommentCounting Days
I have an SQL table that stores company incidents, so I have a Microsoft Flow that will send out an email with the count of days since the last incident. So basically, I want to know how many days it has been since the last row was entered into the SQL table. Is there a simple way to do that or is this a complex request? Thank you very much!Solved2.1KViews0likes2CommentsHow to count multiple values in a cell
Hello, This is the first time I post! I need to do the following. I have a dataset and one of the fields is made up of cells that can have multiple values. For example the below. We have cells that contain zero, one or multiple names and I would need to count those names like in a pivot table. These names are separated by an "enter". In the example below I put the desired output. 2019 2018 Class 1 John Mary Mary Joseph Matthew Class 2 Theresa Anthony Matthew Margaret Class 3 John Theresa Theresa Margaret Desired output: Number of Classes Person 2019 2018 John 2 0 Theresa 2 1 Thanks in advance!Solved3.5KViews0likes7CommentsCount until
We have a data table that we are continually adding to, we would like to track the updates to this. I was wondering if there is a way to countA in the table until a nominal date, at which point that number does not change. We want to know how much we add each month without manually checking. Can excel be set to countA on the 1st of each month so we keep a record of the additions? Thanks!1.2KViews0likes1CommentAdd Column Using Count
I am trying to add a column named Past12 to my table wynne_incidents. I want to count all the distinct incident_num by employ_id. So basically, I am counting the number of incidents (incident_num) for each employee (employ_id). I have this query which pulls the data correctly. Now I just need to know how to use it with ALTER TABLE and ADD select count(distinct incident_num)as "Past 12", employ_id from wynne_incidents where inc_date >= '04/01/2019' and inc_date <= '06/30/2019' group by employ_id Thank you!5.2KViews0likes0Comments