活动
LOWER
将文本字符串中的 all 字母转换为小写。
DAX
LOWER(<text>)
术语 | 定义 |
---|---|
text |
要 convert 为小写的文本,or 对 contains 文本的列的引用。 |
小写文本。
not 字母的字符 not 更改。 例如,公式 = LOWER("123ABC")
返回 123abc
。
以下公式获取列中的每一行 [ProductCode],and 将 value 转换为 all 小写。 列中的数字 not 受影响。
DAX
= LOWER('New Products'[ProductCode])