DAX Text - REPT 函数
说明
按给定次数重复文本。
语法
REPT (<text>, <num_times>)
参数
Sr.No. | 参数与说明 |
---|---|
1 |
text 要重复的文本。 |
2 |
num_times 一个正数,指定重复文本的次数。 |
返回值
一个文本字符串。
备注
您可以使用 DAX REPT 函数用文本字符串的实例数填充单元格。
如果 number_times 为 0(零),DAX REPT 函数将返回空白。
如果 number_times 不是整数,则会四舍五入。
如果 DAX REPT 函数的结果超过 32,767 个字符,则会返回错误。
如果您直接使用文本参数,请将其括在双引号。
示例
= REPT ("55",2) returns 5555. = REPT (55,2) returns 5555. = REPT("AB",5) returns ABABABABAB. = REPT("AB",2.2) returns ABAB. = REPT("AB",2.5) returns ABABAB. = REPT("AB",0) returns Blank.