Forum Discussion

alittle1's avatar
alittle1
Frequent Visitor
5 years ago
Solved

new column based on specific text within a column

I am trying create a new column in a table based on [fpartno] where:

 

- if the 14th digit of the [fpartno] is F, the value in the new column should show "RC_FP"

- if the 14th digit of the [fpartno] is R, the value in the new column should show "RC_RP"

- and if the 14th digit is neither, then the new column should be empty.

 

I created this:

cRCtest = SWITCH(TRUE (),
SEARCH("F", 'dbMfgUnits'[fpartno],,0) =14, "RC_FP",
SEARCH("R", 'dbMfgUnits'[fpartno],,0) =14, "RC_RP"
)
 
I get the expected result for the "RC_FP", but not for the "RC_RP".   Can anyone help?
  • alittle1 

    Ah, of course. I did not realize at first sight. What you are doing is looking for the position of the first R or first F. And that can be before the position 14 (even if there's an "R" at position 14) What you actually need is to extract the character in position 14 and then check if it is an R or an F:

     

    cRCtest V2 =
    SWITCH (
        RIGHT ( LEFT ( dbMfgUnits[fpartno], 14 ), 1 ),
        "R", "RC_FP",
        "F", "RC_RP"
    )
    

     

    Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

    Contact me privately for support with any larger-scale BI needs, tutoring, etc.

    Cheers 

     

4 Replies

  • AlB's avatar
    AlB
    Community Champion

    alittle1 

    Ah, of course. I did not realize at first sight. What you are doing is looking for the position of the first R or first F. And that can be before the position 14 (even if there's an "R" at position 14) What you actually need is to extract the character in position 14 and then check if it is an R or an F:

     

    cRCtest V2 =
    SWITCH (
        RIGHT ( LEFT ( dbMfgUnits[fpartno], 14 ), 1 ),
        "R", "RC_FP",
        "F", "RC_RP"
    )
    

     

    Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

    Contact me privately for support with any larger-scale BI needs, tutoring, etc.

    Cheers 

     

  • AlB's avatar
    AlB
    Community Champion

    Hi alittle1 

    Your code looks sound. Can you share some data with examples where it does not work?

    Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

    Contact me privately for support with any larger-scale BI needs, tutoring, etc.

    Cheers 

     

    • alittle1's avatar
      alittle1
      Frequent Visitor

       

      Value

      0P9RC15A25020R0-FSC:  expected result "RC-RP"; actual result = empty field

      0P9RC17L50160FS-FXC-03:  expected result "RC-FP"; actual result "RC-FP"

      0P9RC22A25050R0-XSC:  expected result "RC-RP"; actual result = empty field

      0P9RC22A75020F2-FSC-C01:  expected result "RC-FP"; actual result "RC-FP"