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 nowThe Fabric community is now in read-only for platform upgrade. 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.
| User | Count |
|---|---|
| 21 | |
| 21 | |
| 14 | |
| 14 | |
| 13 |
| User | Count |
|---|---|
| 47 | |
| 36 | |
| 24 | |
| 20 | |
| 20 |