Get Max Value from Decimal List



List<Decimal> lstofDecimalValues = new List<Decimal>();
lstofDecimalValues.add(55.0);
lstofDecimalValues.add(75.5);
lstofDecimalValues.add(99.3);
Decimal maxvalue = lstofDecimalValues[1];
 system.debug('maxvalue***'+maxvalue);
        For (integer i =0;i<lstofDecimalValues.size();i++)
        {
            
            if( lstofDecimalValues[i] > maxvalue)
                maxvalue = lstofDecimalValues[i]; 
system.debug('maxvaluellll'+maxvalue);            
        }    
system.debug('the max value is'+maxvalue);




Comments

Popular posts from this blog

Salesforce Spring 16 Release Exam (Maintenance Exam Q&A) for Developer 201 Admin

Show Hyper Link On Add Error in Salesforce Trigger

Show the Success Message before Redirecting the Detail page on Visualforce Page