The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Dear Experts,
I am trying to create the below measure but it is not working.
Measure -
Test Chart Title =
Geography is not returned in this measure. Please help.
Solved! Go to Solution.
Try this
Test Chart Title =
VAR MonthPart =
SELECTEDVALUE (
'Time Day'[Month_Year],
"Current Month"
)
VAR Geography =
IF (
ISFILTERED ( 'PS Location'[COUNTRY] ),
SELECTEDVALUE ( 'PS Location'[COUNTRY] ),
""
)
RETURN
"Country Wise" & Geography & MonthPart
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 🙂
Try this
Test Chart Title =
VAR MonthPart =
SELECTEDVALUE (
'Time Day'[Month_Year],
"Current Month"
)
VAR Geography =
IF (
ISFILTERED ( 'PS Location'[COUNTRY] ),
SELECTEDVALUE ( 'PS Location'[COUNTRY] ),
""
)
RETURN
"Country Wise" & Geography & MonthPart
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos 🙂
User | Count |
---|---|
26 | |
10 | |
8 | |
5 | |
5 |
User | Count |
---|---|
33 | |
13 | |
11 | |
9 | |
8 |