react-datepicker issue with range for outside of month - react-datepicker

When selecting a range for two months start date highlighted for the dates outside month which doesnt look correct. I tried to change css classes but cannot achieve what I want. I know there is a class for days outside month but overriding it doesnt help.

Related

Conditionally format all the cells with dates of the current week

I have a table that looks like this:
some text 14.09.2022
some text 15.09.2022
some text 23.10.2022
And I need to conditionally format each cell in the second column if the date in that cell is during the current week.
I have tried different solutions from the Internet[^1], but neither works for me: each time Google Sheets says my formulas are wrong. Any help?
[^1]: For example, I have tried to adopt the formula found here.
Try below custom formula in CF rule.
=WEEKNUM($C2)=WEEKNUM(TODAY())

Change row color by weekday

Based on the weekday, I want the correct day to light up.
Screenshot of what I'm trying to accomplish
Use the following formula in the conditional formatting tab:
=IF(WEEKDAY(TODAY(),2)=1,"Monday",IF(WEEKDAY(TODAY(),2)=2,"Tuesday",IF(WEEKDAY(TODAY(),2)=3,"Wednesday",IF(WEEKDAY(TODAY(),2)=4,"Thursday",IF(WEEKDAY(TODAY(),2)=5,"Friday",IF(WEEKDAY(TODAY(),2)=6,"Saturday",IF(WEEKDAY(TODAY(),2)=7,"Sunday",)))))))
Please use Text contains as the option (you're also free to use Text is exactly option as well):

ios:Date picker with short format

I want a date picker like this one, with the month name in short format:
But this is what I get:
This has the full month name, which is not what I want.
I set date picker mode like this:
mydatepicker.datepickermode = datepickermode.date
but it's not working.
Embedded datePicker is not very flexible to adjust. The way to solve your issue is to create your own picker by using UIPickerView. You need to create a picker with 3 components and configure it depending on your wishes. But this way is a little bit annoying, because you need to keep in mind, that every month has it's own number of days. And don't forget also about 29th of February.

Format calendar cells to change colour when an event is added

I'm using Google Spreadsheets to create a calendar that my Admin Team can access and put their names down for certain jobs that need to be done. To make it easier to see, I'm trying to conditionally format the cells so that they change colour when an event is added to that cell. And I have three different cells for each date to format, as I had to break them into the date, the event, and the space where Admins put their names down.
The thing is, I have to do this with each individual cell, which is tiresome at the least; I spent an hour last night searching for the formula to do what I wanted, and only managed to do two cells. It takes too long to do this, so I was wondering if there's a way to do this quicker, since dragging doesn't sequence the cells. They'll all change when the original cell has text.
The formulae I'm using are =LEN(A6)>0 and =IF(A6>0,true,false)
Is there a way I can get the cells to sequence, or will I have to do it all manually?
Please try selecting ColumnA, Format > Conditional formatting..., Custom formula is:
=OR(A1<>"",A2<>"",A3<>"")
Colour yellow and Range: A2:A

Excel 2010 pick a time

is there any way in excel that would allow me to pick a specific time in a format HH:MM. The
Date and Time picker allows to select only Calendar Day.
Desired result would be something like
Rad Time Picker
with a 1 minute sequence
You could set up 2 cells (one for hour, one for minutes), and set up corresponding spin buttons and have each cycle through the hours and minutes as you desire. then a button to grab the result and place it where you want.
Info on adding a spin button here

Resources