License_Count__c * (1- Percent_Off__c)*(IF((TEXT(Plan__c)="monthly"),123, 234))
How can I add in a variable that will only run the calculation if "License_Count__c" is greater than 10?
3 respuestas
Hi Kelly, Try below formula:
IF(License_Count__c>10,(License_Count__c * (1- Percent_Off__c)*(IF((TEXT(Plan__c)="monthly"),123, 234))),NULL)
what is the expectation when License_Count__c end up less than or equal to 10. what is the data type of this formula?(assuming as number)