function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Roswell TanRoswell Tan 

Trailhead: Using Numbers, Currency, and Percentages in Formula Challenge Error

I'm receiving the following error when I try to complete the challenge. What am I doing wrong? 

User-added image

User-added image
@Karanraj@Karanraj
If you read the Challenge question carefully there is a statement the output must be "rounded to the nearest whole number". Apply that logic in your formula then you should be able to clear that challenge
Sai Kiran Kotha 7Sai Kiran Kotha 7
ROUND(3.14159 * Radius__c * Radius__c * Height__c,1)
Lisa SouletLisa Soulet
The following worked for me:
ROUND (3.14159 * (Radius__c^2) * Height__c, 0)