SAP
C_BOCR_11 · Question #41
Numbers are stored in a string field in your database. To perform numeric calculations on this field, the data must be converted to a number. Which formula will correctly convert the data?
The correct answer is C. If NumericText ({Table.Field}) Then ToNumber ({Table.Field}) Else 0. See the full explanation below for the reasoning.
Question
Numbers are stored in a string field in your database. To perform numeric calculations on this field, the data must be converted to a number. Which formula will correctly convert the data?
Options
- AIf IsNumber ({Table.Field}) Then ConvertNumber ({Table.Field}) Else 0
- BIf IsNumber ({Table.Field}) Then ToNumber ({Table.Field}) Else 0
- CIf NumericText ({Table.Field}) Then ToNumber ({Table.Field}) Else 0
- DIf NumericText ({Table.Field}) Then ConvertNumber ({Table.Field}) Else 0
How the community answered
(30 responses)- A7% (2)
- B13% (4)
- C77% (23)
- D3% (1)
Community Discussion
No community discussion yet for this question.