Ideally, I would like a formula to enter "1" to a text field if Date__c falls within the "this year" timeframe. I can then use the formula field as a filter in the roll-up summary field to get my totals on the master record.
Any thoughts or feedback is welcomed!
14 个回答
Check out this idea, with PM comment explaining the limitation. https://success.salesforce.com/ideaView?id=08730000000BrUAAA0
Potential workaround (untested, just taking a stab at it) may be text or number custom field on the child you're trying to roll up, updated via workflow w/ IF(YEAR(Date__c ) = YEAR(TODAY()), "1", "") on update. In theory, the criteria field isn't calculated in a variable way, so it should be fair game for roll-up summary criteria?