Forum Discussion

aktripathi2506's avatar
10 years ago
Solved

data type which contains both test and number

Hi,   Just curious to know if there is a way to store both number and text in one column.   Actually I want to apply a formula something like this:   if(number), return some value, ""   So if...
  • KGrice's avatar
    KGrice
    10 years ago

    From your output column, it looks like you want anything that is only a number, or anything that contains CAD. To get that, I added a custom column with the formula:

    =try Number.From([Input Values]) otherwise if Text.Contains([Input Values], "CAD") then [Input Values] else ""

     

    The result:

     

     

     

    You could then filter the Output column to exclude blanks, then delete the column, and you'd be left with only the values you want.

  • AlexChen's avatar
    AlexChen
    10 years ago

    Hi aktripathi2506,

     

    1. If you want to select completely opposite, you can use code below:

     

    if Value.Is([value], type number) then "" else if Text.Contains([value], "CAD") then "" else [value]

     

     

    2. If you want to add more text, such as IND, US, you can write like below:

     

    try Number.From([value]) otherwise

        if Text.Contains([value], "CAD") then

               [value]

        else if Text.Contains([value], "IND") then

              [value]

        else if Text.Contains([value], "US") then

              [value]

        else

              ""