Hi ,
i am trying to display in a table a date value that is defined by a <$let> widget
i am using TiddlyTools for TW5 v5.2.5 — Small Tools for Big Ideas!™
the date value is a subtraction of 2 other dates set by the date picker tool, parsed to Unix timing, added together then converted back to normal date format
so
<$let
date1={{{ [{!!endd1}parsedate[unixtime]] }}}
date2={{{[{!!endd2}parsedate[unixtime]] }}}
date3 = {{{[<date1>subtract<date2>]}}}
date4={{{[<date3>unixtime[MM/0DD/YYYY]]}}}>
inside
<table>
<tr><th>title</th><th>due date</th><th>status</th></tr>
<$list filter="[tidtype[task]status[In House]!tag[test]sort[endd1]]">
<tr><td><$view field="title" />
</td><td><<date4>>
</td><td><$view field=status/></td></tr>
its defaulting to 1970-01-01 which i guess is 0 in unix time ,i believe the variables the calculation “date4” is based on are not read properly as they all return NAN when called speratley , which as i understood is maybe some Html to wikitext conversion issue, i tried to use the wikify widget but got lost honestly .
can someone please help me as to wether this is to be solved with the wikify widget or not , an if yes , how to use it in this context
thanks again
edit: added some exctra information and formatted the code