Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
I need to show various Measures in a line chart. in this case is depending of the "Location". Any ideas / measure that could help ?
I think "Var" & "return" could work but not sure how to built that measure.
Thanks & regards
Solved! Go to Solution.
Hello @cristianml
I think something like this is what you are looking for. I don't know where your list of locations is (what table) or what countries you want to use EUR for but this should get you started.
Display Amount = VAR _Location = SELECTEDVALUE ( Locations[Location] ) RETURN SWITCH ( TRUE (), _Location = "Argentina", [FX Rate ARS], _Location = "China", [FX Rate CNY], _Location IN { "AUSTRIA", "BELGIUM", "FINLAND", "FRANCE", "GERMANY", "GREECE", "ITALY", "LATVIA", "SPAIN" }, [FX Rate EUR], _Location = "India", [FX Rate INR], _Location = "Poland", [FX Rate PLN] )
Hello @cristianml
I think something like this is what you are looking for. I don't know where your list of locations is (what table) or what countries you want to use EUR for but this should get you started.
Display Amount = VAR _Location = SELECTEDVALUE ( Locations[Location] ) RETURN SWITCH ( TRUE (), _Location = "Argentina", [FX Rate ARS], _Location = "China", [FX Rate CNY], _Location IN { "AUSTRIA", "BELGIUM", "FINLAND", "FRANCE", "GERMANY", "GREECE", "ITALY", "LATVIA", "SPAIN" }, [FX Rate EUR], _Location = "India", [FX Rate INR], _Location = "Poland", [FX Rate PLN] )
User | Count |
---|---|
84 | |
77 | |
76 | |
43 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
45 | |
43 |