Any Idea How I can implement this? Thanks!
10 réponses
Appreciate the help Bro! But I think I found a way to do this. Rather than adding it on UI, I've modified my query to return the number along with its currency and It worked as magic.
SELECT CALENDAR_YEAR(Cashflow_Date__c) Year, FORMAT( SUM(Contribution__c) ) Contribution, FORMAT( SUM(Withdrawal__c) ) Withdrawal
FROM [Object]
WHERE [Object] = :'Id'
GROUP BY CALENDAR_YEAR(Cashflow_Date__c)
But one small issue is, that for the Calender Year which have no contribution the value getting displayed is
I Dont know why :(
Any Idea how I can remove this   from UI.