cancel
Showing results for 
Search instead for 
Did you mean: 

Custom formula shows N/A in the form

xuanying
Discoverer
0 Kudos

Hi all,

A question about compensation custom formula shows N/A in the form. We'd like to use custom fields to show Segment for corresponding CR%andPIR%, for example, for CR% = 10%, it should show 0%-25%. However, the segment do not show by default for some fields now, and those are not shown by default would appear again when I edit the merit increment.

Screenshot 2024-04-24 at 10.24.17.pngCurrent formula:

if(cust_CurrentCR<60,'Below 60%',if(cust_CurrentCR>=60&&cust_CurrentCR<70,'60% -70%',if(cust_CurrentCR>=70&&cust_CurrentCR<80,'70%-80%',if(cust_CurrentCR>=80&&cust_CurrentCR<90,'80%-90%',if(cust_CurrentCR>=90&&cust_CurrentCR<100,'90%-100%',if(cust_CurrentCR>=100&&cust_CurrentCR<110,'100%-110%',if(cust_CurrentCR>=110&&cust_CurrentCR<120,'110%-120%',if(cust_CurrentCR>=120&&cust_CurrentCR<130,'120%-130%',if(cust_CurrentCR>=130,'Above Max')))))))))

Really appreciate if anyone can provide some suggestion.

SAP SuccessFactors Compensation 

catmoye
Participant
0 Kudos
Hi @xuanying, I would start by adding an "else" statement to your last "if", as formulas can behaves weirdly if the ifs do not all have an else
View Entire Topic
catmoye
Participant

Hi @xuanying, I would start by adding an "else" statement to your last "if", as formulas can behaves weirdly if the ifs do not all have an else

pmacgovern
Product and Topic Expert
Product and Topic Expert
0 Kudos
This is exactly right. There is no "else" condition in your last if.
xuanying
Discoverer
0 Kudos
It works! Thank you 🙂