excel sheet report Sorting - excel-formula

We have requirement in which we have to pull a report based on the response and date. Here the tricky part is in a given month we should get the latest response (Which is YES or NO ) for the latest date of the given month.
For some accounts there are two reports generated (Lets say for a account x , two call reports are generated in February i.e on 10 feb and one on 12 feb , Now comes the tricky part I need only the response i.e on 12feb i.e. it maybe true or false).. Please help me how to sort some 4000 records in excel sheet?

Related

Power Automate: Send reminder out 3 months in advance

I have a Microsoft List that has a column called Expiration Date (text in format of MM/DD/YYYY) and Point of Contact (text in format of email#domain.com). How do I create a flow that sends an email out to the Point of Contact 3 months in advance?
My idea was to create a scheduled cloud flow that:
Repeats every day
Looks at every row in specific list
Compares if Expiration Date - 3 Months = Today
If True, send email to Point of Contact
I am currently stuck on step 3 to compare the date. I did Subtract from time to subtract 3 months from Expiration Date but now I do not know how to use this value to compare to today's date.
A better approach is to filter the list by using an OData filter. That will result in a list with all the elements you need.
For doing so, you need to specify the "Filter Query" field (in red):
First type
ExpirationDate eq ''
Then, between the quotes, add an expression, and select the functions addDays and utcNow in the following way:
addDays(utcNow(),92,'MM/dd/yyyy')
Please notice the following:
I'm adding 92 days to get the same day three months in advance for today (today is Oct 18th, so I'm looking for Jan 18th). Maybe adding just 90 days would work for you.
If you just want to add 3 to the month, you would need to get today's date to a variable with utcNow('MM') to get only the month, add 3 to it, and then create the expression accordingly.
I'm sorry the UI is in spanish. I'm from Mexico. But it's the same idea.
In the image, it reads "ExpirationDateText" because that's the way I named the field in my example. In your case, "ExpirationDate" should work.

How to split data by months and have each month inserted separatedly using Excel + Power Query?

I have a small database with a date column (e.g. 1/5/2019). Using excel with power query, I'm grouping these by months (a table for each month - e.g. Nov 19, Dec 19, Jan 20, Feb 20 etc). Right now I have a separate query for each month (which is 36 queries for 3 years) and I load each query into an excel sheet. But I it takes unreasonable amount of time.
The idea is to have these months distinguishable from one another at first glance. The request was to have months separatedly formated as "little tables", eaching having a header with "January" etc.
Is there a more clever way to do it? From a single query using a parameter maybe?
Thank you.
You needn't grouping date by month in PQ. You should have all data in single query and download it in Data Model. Then create Calendar Table and you will be able to use wide variety of DAX time-intelligence functions.

Excel countif integer but exclude date value

I have a basic Excel file to log healthcare survey completed each week, identified by its Project ID, city, type of facility, date completed, and person assigned.
For the week of 10/02/17, I just want to count the number of projects completed that starts in the 17000s; ignore projects in the 1000s.
For example, week of 10/02/17, North zone, =COUNTIF(H3:L9,">17000") = 11. My expected result is 4 not 11 as I want to exclude the date values from the count. See image screenshot for clarification. Thanks
=COUNTIF(H3:L9,">17000")
simply edit your countif statement to exclude the rest of the cells.
=COUNTIF(H3:H9, ">17000")

Display zero values in Group option

I have a problem in Excel 2013 Grouping option. I have created dates and number of tickets created for over a period of time (3 years). I group data on Days to get weekly report. Upon grouping, I see that for some week there is no data. So I want it to appear as "Zero" for that week. But what I see is that week does not appear in the grouped data list.
This is what I am trying to explain - I have selected May 2014 as Created Month and I have daily data hence have grouped it as Days. But you can see that 5/12/2014 - 5/18/2014 and 5/19/2014 - 5/25/2014 is missing. I know they have no value but I want it to appear as zero so that my graph appears correct.
4/28/2014 - 5/4/2014 4
5/5/2014 - 5/11/2014 9
5/26/2014 - 6/1/2014 1
Make sure you have no gaps in your date ranges.

Listing values regardless of prompt selection

I currently have a cognos report with 3 pages:
Monthly Summary
Monthly Detailed
Full Year Trend
The month is determined by a value prompt. My question is: How can I make it so the 3rd report page ignores the Month paramvalue and shows all 12 months regardless of the value prompt? So if June, for example, was picked the first two reports would show only June but the full year trend would show January to December.
Currently the prompt works fine for the two other reports but I can't figure out how to make the third page show the same data everytime.
Thanks,
lostintern
It will get tricky towards year-end/beginning, but anyhow ... Extract the value of Year from your prompt and use it as a filter for your third page query.

Resources