Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

How can I replace single value

How can I replace "single" selected value instead of ALL?  in below case, can i just replace 1 "account fee" to other values and leave another "account fee" as it is.  If I replace Value like below, ...
  • Cfarinha's avatar
    8 years ago

    Do you mean a single value for a specific row? 

    I would create a temporary conditional column that looks for a combination of that value and some other grouping of field values on that row that make it unique. Then create a second column that keeps the value if the result of the first column is false and changes it when true. Then delete the old column along with the first calculated column. Might look something like this:

     

    Check column: if [Other Party] = "ACCOUNT FEE" and [RecID] = "12345" then True else False

    New Other Party Column: if [Check Column] = True then "Replacement value" else [Other Party]