how could convert radzen scheduler from gregorian date to shamsi date - components

Radzen scheduler use Gregorian date time format for showing Calender.how I could convert this format of Calender to Shamsi ?

Related

Time transform in Excel to show midnight as 12:00:00 AM

How to transform time format "0:00:00" to "12:00:00 AM" time format in excel automatically (because I have a column with many values and transform manually isn't solution)

Convert timestamp to DateTime in excel

Is there any way in Excel to convert the timestamp in the format
{"_seconds":1570448585,"_nanoseconds":834000000}
to readable format (Human-friendly)?
1-Oct-2018 12:00 PM
The seconds look like a UNIX timestamp.
UNIX time started counting seconds 1970.
To convert it you need to start with the date 1970-01-01 and add the days as a float.
=DATE(1970,1,1) + A1/60/60/24
I found the solution - There is a feature called "Text to column"

How to convert a String date to a Date

How can I convert this string:
Tue Jan 24 14:59:20 BRT 2017.
Into a date that includes day month year and time and timezone, using Excel functions only.
I have several cells with dates following this format. I have to compute the difference between some of these dates in minutes. I believe that the first step is converting the date to a String to a real date information. Then, I will be able to: order the dates and compute the time between consecutive dates.
Use this formula:
=--(SUBSTITUTE(MID(A1,5,LEN(A1)),"BRT",""))
Then format it to the format you want.
It will now work in math equations.

Converting text to date format YYQQ

I am storing project start and finish dates in the text format YYQQ. My goal is to convert this text to an actual date format, as to be able to substract finish and start dates to obtain the duration of a project in number of quarters.
For example if a project started in the third quarter of 2015, 15Q3 and finished in the second quarter of 2016, 16Q2, then it took 3 quarters to complete the project.
The excel function DATE requires text to be converted to the format YYMMDD, which is not what I want. Does excel have a function to convert for example text 16Q2 to date YYQQ format?
Excel does not have that function. But you can easily write a formula to do that conversion:
To convert to a normal excel date:
=DATE(LEFT(Start,2)+2000,(RIGHT(Start,1)-1)*3,1)
will return the starting date of the quarter.
For a date close to the middle of the quarter, something like:
=DATE(LEFT(Start,2)+2000,(RIGHT(Start,1)-1)*3,45)

Excel - Rounding Date and Time - Up or Down to the Hour

I need to round date and time up and down to the hour in Excel.
The MROUND formula only does it to the nearest hour, but in the case of 10/05/2016 09:43 I want it to be rounded down to 10/05/2016 9:00 and in some cases I want to round up too.
It's essential that they stay in the format dd/mm/yyyy hh:mm:ss
You can do it this way:
=ROUNDDOWN(A1*24,0)/24
=ROUNDUP(A1*24,0)/24
Then you can set any datetime format you need using Cell/Format.

Resources