Is this the salesforce best practice ?This way i would be creating lot of formula fields
1 件の回答
Hello @Saikamal Paradi as you can only have one row level formula on your report, I suggest that you use either report chart with grouping by stage (if visual is ok) or indeed technical fields (for data persistence) to do so. Something like (one per stage value) :
IF(ISPICKVAL(StageName,"Closed/Won"), Amount, 0)
Eric