Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
i have a measure that returns a number.
Solved! Go to Solution.
This should work:
AverageApplicationsPerDay =
format(averagex(values('Task Requested Date'[Date]), 'DFP Applications'[Application Review Count]),"0.00")
how can i format the number to be only two decimal placements
This should work:
AverageApplicationsPerDay =
format(averagex(values('Task Requested Date'[Date]), 'DFP Applications'[Application Review Count]),"0.00")
You can do it by using below code:-
AverageApplicationsPerDay =
VAR result =
AVERAGEX (
VALUES ( 'Task Requested Date'[Date] ),
'DFP Applications'[Application Review Count]
)
RETURN
"Average Applications Per Day - " & ROUND ( result, 2 )
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @NewbieJono ,
You can use this measure:
AverageApplicationsPerDay =
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.
Hi @NewbieJono ,
You can try below code:-
AverageApplicationsPerDay =
VAR result =
AVERAGEX (
VALUES ( 'Task Requested Date'[Date] ),
'DFP Applications'[Application Review Count]
)
RETURN
"Average Applications Per Day - " & result
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
71 | |
70 | |
43 | |
31 | |
26 |
User | Count |
---|---|
89 | |
49 | |
44 | |
38 | |
37 |