Yep, definitely possible and it's not even hard to achieve. But this might look like a not-alowed skin / code request. However I post a short solution, to let you realize how can this be done.on rainmter, I wonder if it is possible to have a countdown in day, month, year, from a date (example September 20, 2004 to the current day),
You need two Time measures, one returning the current date and another returning the start date. Let's name them [MeasureNow] and [MeasureStart]. Add them to your code:
Code:
[MeasureNow]Measure=Time[MeasureStart]Measure=TimeTimeStamp=#Year#.#Month#.#Day#TimeStampFormat=%Y.%m.%d
Code:
[Variables]Year=2004Month=09Day=20
Code:
[MeasureDiff]Measure=CalcFormula=( [MeasureNow:TimeStamp] - [MeasureStart:TimeStamp] )DynamicVariables=1
Now you have to calculate the number of years, months and days, from the number of seconds. I don't post now a solution for this, hope you'll be able to manage it. Check please the above solution and let me / us know if you can't deal with it.
Statistics: Posted by balala — Today, 7:09 pm