Forum Discussion

Rnaval's avatar
Rnaval
Post Partisan
1 year ago
Solved

Need Help creating new columns

  • Hi,

    For the OS Type you can use:

    OS Type = IF ( CONTAINSSTRING( '11936 Master'[OS], "Server"), "Server", "Workstation" )

    For the OS Name you can use:
    OS Name =
        SWITCH(
            TRUE(),
            CONTAINSSTRING( '11936 Master'[OS], "Windows"), "Windows",
            CONTAINSSTRING( '11936 Master'[OS], "Linux "), "Linux ",
            "Other"
        )

    Hope this helps, and please accept my answer as solution if this helps 🙂

3 Replies