Forum Discussion

RenPNW's avatar
RenPNW
Copper Contributor
Feb 26, 2024
Solved

Range of values in one column determine value of second column

Hi, I am new to SharePoint and I am trying to create a formula based on the following scenario. I have two Columns: Column A - Field=Flight_x0023_ (the value entered here determines the item popula...
  • ganeshsanap's avatar
    ganeshsanap
    Feb 28, 2024

    RenPNW Try using formula in this format: 

     

    =IF(ISBLANK([Flight #]),"",IF(VALUE([Flight #])>=3000,"CX",IF(VALUE([Flight #])>=2000,"BX",IF(VALUE([Flight #])>=1,"AX",""))))

     

    OR 

     

    =IF(ISBLANK([Flight #]),"",IF(VALUE([Flight #])<=1999,"AX",IF(AND(VALUE([Flight #])>2000,VALUE([Flight #])<=2999),"BX",IF(VALUE([Flight #])>=3000,"CX",""))))

     


    Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.

Resources