Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Guys,
I need a little help on SELECTEDVALUE. What I wanted to achieve is when I select a month, it will display:
"For the month of <MONTH>, the TOTAL TRAFFIC is <SUM OF TOTAL TRAFFIC>, the AVERAGE PAGE PER SESSION IS <AVERAGE PAGE/SESSION> etc....
I created a measure that says
Solved! Go to Solution.
@emmanmapada I assume you have already created measure for total traffic and average session
I would suggest you to use nested concatenate function
Measure =
VAR _selectedMonth = SELECTEDVALUE('Month Order'[Month],"")
VAR _totaltraffic = SUM('Table'[Total Traffic])
VAR _AveragePageSession = Average('table'[field])
RETURN CONCATENATE("For the month of ",CONCATENATE(_selectedMonth,CONCATENATE(" the TOTAL TRAFFIC is ",CONCATENATE(_totaltraffic,CONCATENATE("AVERAGE PAGE PER SESSION IS ",_AveragePageSession)))))
@emmanmapada I assume you have already created measure for total traffic and average session
I would suggest you to use nested concatenate function
Measure =
VAR _selectedMonth = SELECTEDVALUE('Month Order'[Month],"")
VAR _totaltraffic = SUM('Table'[Total Traffic])
VAR _AveragePageSession = Average('table'[field])
RETURN CONCATENATE("For the month of ",CONCATENATE(_selectedMonth,CONCATENATE(" the TOTAL TRAFFIC is ",CONCATENATE(_totaltraffic,CONCATENATE("AVERAGE PAGE PER SESSION IS ",_AveragePageSession)))))
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
15 | |
7 | |
5 |