dates
6 TopicsYet Another Conditional Formatting Query
Hey folks, I have an SP list with 3 relevant columns - IssueDate, ReviewFrequency, and NextReview. IssueDate is for manual date entry, ReviewFrequency is a choice of N/A, 3, 6, 12, 24, 36. NextReview is a calculated column that adds number value in ReviewFrequency to IssueDate. I have applied JSON formatting in Format View to format rows where NextReview is less than today (@now) in sp-field-severity--severeWarning, rows where next review is due within 30 days (2592000000ms) in sp-field-severity--Warning, and all other rows in alternating sp-css-backgroundColor-BgLightGray30 and sp-css-backgroundColor-noFill (giving zebra alternate banding). All works well apart from an issue with dates being read by conditional formatting as MM-dd-yyyy not dd-MM-yyyy as illustrated here: How do i ensure dates in the columns are seen / interpreted as dd-MM-yyyy in the conditional formatting rules? Thanks in advance,1.2KViews0likes4CommentsHow to create a rolling calculated column in sharepoint list
Hi- first time posting here, and new to sharepoint. I have a sharepoint list in which i have some basic calculating columns totaling hours and units worked on a day's shift per employee. I was looking for some insight, if a calculated column could be made using a rolling time calculation for instance towards a payroll date. This will allow me to group all entries by a pay date. payroll is sent out on the 15 & 30th of every month. I plan to have this sharepoint list as a data source into power bi & /or excel i can easily group the employee's total per pay period and have it vlookup again a payment table. However if i can group by a payment period that would greatly impact my over all goal. Thank you for taking to time to review my question Drew Westman1.1KViews0likes0CommentsDate filtering of Bing Searches
I have become extremely reliant on being able to filter out or on searches by date. Often there are posts that are days, months, years old that are not relevant in both I want data that is old or I just want the most recent. Currently, there is a default window set that can be used consiting of less than a day, week or month old. While that is great for some statistics and data mining it is just not good enough for research. This lack of capability forces me to go back to Google to find pertinent data associated with a period. I was even envisioning a tag team capability where Bing mines the gross data and Edge Dev provides an interface to refine the data, maybe even manipulate it. I would think that seeding Bing would provide a better set of raw material. What does anyone else think?6.2KViews0likes2CommentsSetting Date in Stored Procedure
I have a stored procedure that looks for orders within a date period. How do I set the date within the stored procedure? Here is my code. Thank you!! USE [TMWSUITE] GO SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE Proc [dbo].[DawgAlert_Completed_Order_Status] AS SELECT orderheader.ord_number ,orderheader.ord_billto ,orderheader.ord_status ,orderheader.ord_origin_earliestdate ,orderheader.ord_origin_latestdate ,orderheader.ord_dest_earliestdate ,orderheader.ord_dest_latestdate ,orderheader.ord_trailer ,orderheader.ord_totalmiles ,stops.stp_city ,stops.stp_state ,stops.stp_schdtearliest ,stops.stp_schdtlatest ,stops.stp_status ,stops.stp_number ,stops.stp_sequence ,stops.stp_arrivaldate ,stops.stp_departuredate ,stops.cmd_code ,stops.cmp_name ,orderheader.ord_refnum ,orderheader.ord_description ,trailerprofile.trl_number ,trailerprofile.trl_type3 ,city.cty_nmstct ,orderheader.ord_completiondate FROM orderheader INNER JOIN stops ON orderheader.ord_hdrnumber = stops.ord_hdrnumber LEFT OUTER JOIN company ON orderheader.ord_company = company.cmp_id INNER JOIN trailerprofile ON orderheader.ord_trailer = trailerprofile.trl_number INNER JOIN city ON stops.stp_city = city.cty_code WHERE stops.stp_departure_status = 'DNE' AND orderheader.ord_status='CMP' AND (orderheader.ord_completiondate >= @LoadDate) AND (orderheader.ord_completiondate <= @EndDate) AND (orderheader.ord_billto = @billto)Solved1.8KViews0likes1CommentDate Interval - get each day´s date for a flow run?
I have a problem with how i use a flow. My users report a start date and an end date to a sharepoint list. Then i post a reminder of todays events and tomorrows event into Teams. But if the user have entered a date interval of 3 days, the flow only picks up the startdate column data. How can i force sharepoint to create a row for each day in the date interval? For example, user answer my Microsoft Forms and enters startdate and enddate of their event. but then i want to remind in teams about this event every day, not just at the start-date. I want a reminder each day. So if the date-interval is 10 days i want one reminder every day. How to get the date for each day in flow? Or if i could build a flow that breaks down a date interval and adds a row for each interval and use that list to pick out reminders like i do today. Acutally that would be the best solution, i got the reminder flow running now, it works fine. If i just could point that flow to a list containing all dates in a date column, it all would be solved. How to break down a ten day interval so that each day get it´s own row startdate, date2, date3....date9, date10 (one for each row).Date Calculator / Seasonal rates
Hello. I am trying to figure out how to make a simple calculator for my apartment that I rent out. The rent amount is seasonal. I would like to be able to just enter a start date and an end date, and end up with a total cost (which factored in the varying seasonal rates). The seasonal rates are fairly simple as they are based by the month. Any feedback or direction is greatly appreciated.1.1KViews0likes2Comments