The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance 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
User | Count |
---|---|
78 | |
77 | |
38 | |
31 | |
28 |
User | Count |
---|---|
106 | |
98 | |
55 | |
49 | |
47 |