Forum Discussion
- LauraThackerQrew CaptainYou will need either an additional formula-field or an in-report Formula to achieve this because you actually want to compare two timestamp fields together based on the date of them being a specific time frame apart.
If you need this formula value in more than 1 report; you should build a formula-checkbox. Otherwise, in the report you have; add a custom-formula and use that in your Filtering section of the report.
If(ToDate([Week Two Follow-up Timestamp]) >= ToDate([Week One Follow-up Timestamp])+Days(7),true,false)
This will evaluate if the Week Two Follow-up Timestamp is equal to or greater than the Week One Follow-up Timestamp date plus 7 days. - Lightning0114Qrew CadetThanks for the quick response. I need it only for one report.
1. Anyway, did you mean to say that I create another formula-checkbox field (say I name it Week1 and Week2 omparison) using this formula below then at the filter section of the report, use that field to set up something like this "Week1 and Week2 Comparison is equal to checked"?
For formula checkbox field:
If(ToDate([Week Two Follow-up Timestamp]) >=ToDate([Week One Follow-up Timestamp])+Days(7),true,false)
2. Another thing, I don't need the new field (Week1 and Week2 comparison) to be shown on this report. Is this possible to use the field for filters but not showing it on the report?- LauraThackerQrew CaptainSince you only need this comparison to made for 1 report; then you can build a custom Report-Filter. You can use anything in a filter without showing the field on a report.
- Lightning0114Qrew CadetThank you! This should work fine.