Forum Discussion
NewbieJono
4 years agoPost Partisan
adding text to a measure
i have a measure that returns a number. AverageApplicationsPerDay = averagex(values('Task Requested Date'[Date]), 'DFP Applications'[Application Review Count]) could i add text before it to ...
- 4 years ago
This should work:
AverageApplicationsPerDay =
"Average Applications Per Day - " &format(averagex(values('Task Requested Date'[Date]), 'DFP Applications'[Application Review Count]),"0.00")
jppv20
4 years agoSolution Sage
Hi NewbieJono ,
You can use this measure:
AverageApplicationsPerDay =
"Average Applications Per Day - " &
averagex(values('Task Requested Date'[Date]), 'DFP Applications'[Application Review Count])
If I answered your question, please mark it as a solution to help other members find it more quickly.