Forum Discussion
ArchStanton
3 years agoPower Participant
Variable not working
Hi, I have inherited a data model that has dozens of Ages Banding calculations that I want to simplify using Variables. Is this possible on the code below? Please not the error message below. ...
- 3 years ago
ArchStanton , Try like
VAR Age_Profile = 'Cases'[Case Length (Adj)]
RETURN
SWITCH(true(),
Age_Profile < 90 , " 0-3 Months",
Age_Profile < 180, " 3-6 Months",
Age_Profile < 270, " 6-9 Months",
Age_Profile < 365, " 9-12 Months",
"12+ Months"
)
amitchandak
3 years agoSuper User
ArchStanton , Try like
VAR Age_Profile = 'Cases'[Case Length (Adj)]
RETURN
SWITCH(true(),
Age_Profile < 90 , " 0-3 Months",
Age_Profile < 180, " 3-6 Months",
Age_Profile < 270, " 6-9 Months",
Age_Profile < 365, " 9-12 Months",
"12+ Months"
)
- ArchStanton3 years agoPower Participant
Thanks, I see I omitted TRUE
It works now!👍