You need to sign in to do that
Don't have an account?
Btuitasi1
Formula field to add 1 to number field
I have two formula fields (UpVotes and DownVotes). When a text field (Score_Button__c) is changed to "Up" then add 1 to UpVotes. If Score_Button__c is changed to "Down" then add 1 to DownVotes. Here is what I have figured out so far:
Any ideas on how to fix my formula?
Thanks!
IF(Score_Button__c = "Up",+ 1, null)After this gets assigned, I'll have a trigger reset the Score_Button__c value to a blank. My problem is that once the field gets reset, the value gets reset as well. I want to keep the +1 value that occurred before the trigger reset.
Any ideas on how to fix my formula?
Thanks!
All Answers
Thanks for the help!!