This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
I have two measure values. One specific for January and other for rest of the months. If Jan is selcted then display Jan value else display other value. Can this be done using an switch?
Final Term:=
SWITCH(
TRUE(),
VALUES('Forecast Calendar'[Month Short Name])="Jan",[January Terms],
[Terms Non-Blank]
)
Solved! Go to Solution.
Well yes it can although I probably would not use SWITCH for only 1 condition but rather if there are multiple conditions
Final Term =
SWITCH (
VALUES ( 'Forecast Calendar'[Month Short Name] ),
"Jan", [January Terms],
[Terms Non-Blank]
)I probably would go with this since there's only 1 IF Statement
Final Term =
IF (
SELECTEDVALUE ( 'Forecast Calendar'[Month Short Name] ) = "Jan",
[January Terms],
[Terms Non-Blank]
)However they should both work! ![]()
Well yes it can although I probably would not use SWITCH for only 1 condition but rather if there are multiple conditions
Final Term =
SWITCH (
VALUES ( 'Forecast Calendar'[Month Short Name] ),
"Jan", [January Terms],
[Terms Non-Blank]
)I probably would go with this since there's only 1 IF Statement
Final Term =
IF (
SELECTEDVALUE ( 'Forecast Calendar'[Month Short Name] ) = "Jan",
[January Terms],
[Terms Non-Blank]
)However they should both work! ![]()
Doesn't like the syntax for 'SELECTEDVALUE'. The SWITCH works just for Jan but when I select Feb, it displays 0 instead of the feb terminations.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 25 | |
| 23 | |
| 19 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 25 | |
| 23 | |
| 20 | |
| 20 | |
| 19 |