Forum Discussion
Anonymous
2 years agoNot applicable
I need help creating a Dax expression
I need help creating a Dax expression where If a field name (Status) is saying reported, then it equals not started
1 Reply
- ChakravarthyResolver II
Hi Anonymous - Please try to create Calcualted Column using below code
Using IF: If(Table[Status]="reported","not started","Started")
Using Switch:
SWITCH(Table[Status],
"reported","not started",
"Started"
)