DAX - Text Transformations (to be checked)

Convert text to a number: VALUE(<text>) Convert a number to text: Number.ToText(<number>) Convert value to int: CONVERT(<Expression>, INTEGER(Whole Number)) Convert value to decimal: CONVERT(<Expression>, DOUBLE(Decimal Number)) Convert value to text: CONVERT(<Expression>, STRING(Text)) Convert value to boolean: CONVERT(<Expression>, BOOLEAN(True/False)) Convert value to currency: CONVERT(<Expression>, CURRENCY(Fixed Decimal Number)) Convert value to datetime: CONVERT(<Expression>, DATETIME(Date, Time, etc)) Trim text: TRIM() Concatenation: Text & " " & More Text Replace text: REPLACE(<old_text>, <start_num>, <num_chars>, <new_text>)