Created
September 23, 2013 14:25
-
-
Save noeticpenguin/6671231 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IF( | |
ISBLANK(Line_Item__c), | |
CASE( | |
TEXT(Platform_Line_Item__r.Fee_Structure__c), | |
"Media Spend", | |
IF( | |
End_date__c > TODAY(), | |
Monthly_Projected_Spend__c, | |
Monthly_Actual_Spend__c | |
), | |
0.00 | |
), | |
IF( | |
NOT(Monthly_Manually_Set_Subtotal__c), | |
Monthly_Manually_Set_Subtotal__c, | |
0.00 | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment