Hi,
I have bill status field and date&time stamp field. I have to find the #of days in status(from old status to new status)for a bill how do I do this
If you have more than one status row per entity, then it sounds like you should group by the client, and then order by the datetime field, then in the details place a formula which states:
if previous({table.client}) = {table.client} then
totext({table.datetime} - previous({table.datetime}),0,"")
else
"N/A"
If previous({table.billid}) = {table.bill}
and
{table.status} <> "new" then
totext({table.datetime} - previous({table.datetime}),0,"")
else
"N/A"
This w2orks unless you want to ignore the case where the status did not change, such as your 3rd row in the example, in which case you'd use:
If previous({table.billid}) = {table.bill}
and
{table.newstatus} <> "new"
and
{table.oldstatus} <> {table.newstatus} then
totext(({table.datetime} - previous({table.datetime})),0,"")
else
"N/A"
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.