
Not applicable
2017-01-17
09:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
What is wrong with this expression? Trying to get items in the past 30 days
I am trying to pull back a list of projects created in the past 30 days along with a couple of other conditions. What is wrong with this expression? Sum({$<CostGrp_IsActive = {'Yes'}, Trans_Type= {'D'},CostGrp_IsDetailed={'Detailed'},Created_Date >= {Date(Today()-30,'YYYY/MM/DD')}>}CostGrp_Contract_Amt)
571 Views
1 Solution
Accepted Solutions


Creator III
2017-01-17
10:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I think you need to use
Created_Date = {">=$(=Today() - 30)"}
BR,
Matus
4 Replies


Champion III
2017-01-17
10:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try below
Sum({$<CostGrp_IsActive = {'Yes'}, Trans_Type= {'D'},CostGrp_IsDetailed={'Detailed'},Created_Date = {">=$(=Date(Today()-30,'YYYY/MM/DD'))"}>}CostGrp_Contract_Amt)
Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
If a post helps to resolve your issue, please accept it as a Solution.
500 Views


Creator III
2017-01-17
10:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I think you need to use
Created_Date = {">=$(=Today() - 30)"}
BR,
Matus

Not applicable
2017-01-17
10:48 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you very much, however this resulted in no records coming back.
500 Views

Not applicable
2017-01-17
10:49 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you, this worked perfectly.
500 Views
