Forum Discussion
Rnaval
Post Partisan
1 year agoNeed Help creating new columns
- 1 year ago
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 🙂
mariussve1
Solution Sage
1 year agoHi,
For the OS Type you can use:
OS Type = IF ( CONTAINSSTRING( '11936 Master'[OS], "Server"), "Server", "Workstation" )
For the OS Name you can use:
Hope this helps, and please accept my answer as solution if this helps 🙂
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 🙂
- Rnaval1 year ago
Post Partisan
Thank You