Even if makes not too much sense in my opinion, I don't think it's not possible, however some math is required. I'd count the number of seconds since midnight and would convert this number to the number of seconds of the day with 32 hours and each hour with 50 minutes.I thought about making calendar, and clock with different values than usual. Like 32hours a day, every hour has 50 minutes instead of 60 or something, and calendar based on custom values too, but i am no programist, so i dont know where to start.
For instance, the following [MeasureSecSinceMN] measure is returning the number of seconds since midnight (based on the values returnd by the [MeasureHour], [MeasureMinutes] and [MeasureSeconds] measures):
Code:
[MeasureHour]Measure=TimeFormat=%#H[MeasureMinutes]Measure=TimeFormat=%#M[MeasureSeconds]Measure=TimeFormat=%#S[MeasureSecSinceMN]Measure=CalcFormula=( 3600 * MeasureHour + 60 * MeasureMinutes + MeasureSeconds )
Having the above measure, we have to transform this into hours, minutes and seconds, for instance this way:
Code:
[MeasureHourNew]Measure=CalcFormula=( Floor ( MeasureSecSinceMN / ( 60 * 50 )))[MeasureMinutesNew]Measure=CalcFormula=( Floor (( MeasureSecSinceMN - 60 * 50 * MeasureHourNew ) / 50 ))[MeasureSecondsNew]Measure=CalcFormula=( MeasureSecSinceMN - 60 * 50 * MeasureHourNew - 50 * MeasureMinutesNew )
Statistics: Posted by balala — Today, 4:54 pm