Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Guys,
I want to format my text to show only 2 decimal places
=num(num(num(num(Num(sum({<Report_MonthT={'$(=Month(date(MonthStart(today()))))'}>} Offered), '#,##0.','.',',')
-
Num(sum({<Report_MONTH={'$(=month(max(MonthName(Report_Date))))'}>} Abandoned+[Transfered]), '#,##0.','.',','))
/
Num(sum({<Report_MonthT={'$(=Month(date(MonthStart(today()))))'}>} Offered), '#,##0.','.',','),0 & '%'))) *100
it looks to me like you have got overkill with formatting.
do your equation in full and apply formatting around it like below:
num(
(sum({<Report_MonthT={'$(=Month(date(MonthStart(today()))))'}>} Offered)
-sum({<Report_MONTH={'$(=month(max(MonthName(Report_Date))))'}>} Abandoned+[Transfered]))
/
sum({<Report_MonthT={'$(=Month(date(MonthStart(today()))))'}>} Offered)
,'#.##')
it looks to me like you have got overkill with formatting.
do your equation in full and apply formatting around it like below:
num(
(sum({<Report_MonthT={'$(=Month(date(MonthStart(today()))))'}>} Offered)
-sum({<Report_MONTH={'$(=month(max(MonthName(Report_Date))))'}>} Abandoned+[Transfered]))
/
sum({<Report_MonthT={'$(=Month(date(MonthStart(today()))))'}>} Offered)
,'#.##')