Forum Discussion
coltcarson
7 years agoNew Member
Columns With Multiple Data Types
Hello, Currently within my dataset there is a column that contains both numerical and text data types. Is it possible to convert the numerical data types to currency values while leaving the text...
- 7 years ago
You may add a calculated column as follows.
Column = IFERROR ( FORMAT ( CURRENCY ( Table1[Amount] ), "Currency" ), Table1[Amount] )
v-chuncz-msft
Community Support
7 years ago
You may add a calculated column as follows.
Column = IFERROR ( FORMAT ( CURRENCY ( Table1[Amount] ), "Currency" ), Table1[Amount] )