Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.