Forum Discussion

Giavo's avatar
Giavo
Helper III
8 years ago
Solved

path

Hello, i have one interesting question, i have a Path  column(19 levels down) and SubPath column     Path Column,   Sub-Parh Column A/B/C                      B/C A/B/D                      B/D ...
  • v-yulgu-msft's avatar
    8 years ago

    Hi Giavo,

     

    Please try this formula:

    Column =
    IF (
        ISERROR ( FIND ( 'Path'[Sub-Path Column], 'Path'[Path Column] ) ),
        "False",
        "True"
    )

     

    Best regards,
    Yuliana Gu