Forum Discussion
Anonymous
7 years agoNot applicable
Convert text with commas into value
Hi all, My database has some numerical fields that come in text and some of them have commas, by the time to convert the text to a value, the comma disappear and my number become "bigger". For e...
- 7 years ago
Oh, I guess I misunderstood. Then replace "," with "." instead of blank.
PattemManohar
7 years agoCommunity Champion
I hope you are looking to achieve this...
Input
I've splitted the Data field into two parts i.e before comma and after comma. Duplicated Part2 field to be a decimal type.
Then added a final output field as below
FinalOutput = IF(VALUE(NumText[Part2Num])=0,NumText[Part1],NumText[Data])
Output