Untitled

 avatar
unknown
plain_text
2 years ago
424 B
3
Indexable
texto_reemplazado_Status =
IF (
    ISBLANK ( SELECTEDVALUE ( 'Project'[Status] ) ),
    "-",
    VAR SelectedStatus = SELECTEDVALUE ( 'Project'[Status] )
    RETURN
        SWITCH (
            SelectedStatus,
            "Abiertos", "Abiertos",
            "Cerrado", "Cerrado",
            "Cerrado técnicamente", "Cerrado técnicamente",
            "Liberados", "Liberados",
            "-"
        )
)
Editor is loading...