Forum Discussion
Anonymous
7 years agoNot applicable
Custom Column Formatting
Hello, I have a column which is a mixture of numbers and N/A. Is there a way of formatting the column into thousands using a custom column rather then in the table. I want the N/A to be sho...
- Anonymous7 years ago
You can do this as a new column in Power Query:
and the code for the custom colum is:
try Text.From( Number.FromText([Value]) / 1000) & "k" otherwise "N/A"
Anonymous
7 years agoNot applicable
You can do this as a new column in Power Query:
and the code for the custom colum is:
try Text.From( Number.FromText([Value]) / 1000) & "k" otherwise "N/A"