๐Ÿ“ Text Length

Goal: Count the number of characters in a string.
Note: Spaces, numbers, and symbols count as 1.

Ready...

๐Ÿ’ป DAX Formula

-- Calculate character count
COLUMN CharCount = LEN( Customer[Address] )
-- Useful for data validation (e.g. ZIP codes)
Current Count:
-