--- type: "fhirpath-function" title: "FHIRPath Function: convertsToDecimal" function: "convertsToDecimal" category: "Conversion" section: "5.5.6.2" source: "fhirpath/functions.json" --- # FHIRPath Function: convertsToDecimal _No canonical section match found in index.md._ ## Summary - **Category**: Conversion - **Section**: `5.5.6.2` - **Return Type**: `Boolean` - **Empty Input Result**: `empty` - **Errors on Multiple Input**: `true` ## Description If the input collection contains a single item, this function will true if the item can be converted to a Decimal value. ## Arguments - none ## Type Mapping - `Any-Boolean` ## Example ```fhirpath '123.45'.convertsToDecimal() // returns true 'abc'.convertsToDecimal() // returns false ```