"starts with" 在使用 DAX 的表达式中
"starts with" in an expression using DAX
如何使用 DAX 编写表达式来检查字符串是否以其他字符串开头?示例:ext.example 以 "ext."
开头
你可以使用文本函数
=FIND("BMX","line of BMX racing goods")
检查
https://msdn.microsoft.com/en-us/library/ee634938.aspx
https://msdn.microsoft.com/en-us/library/ee634882(v=sql.120).aspx
这个表达式起作用了,
NewColumn =
IF (
LEFT ( TableName[ColumnToSearchIn], LEN ( "Some string" ) ) = "Some string",
"Starts With",
"Does not start with"
)
此表达式将确定 ColumnToSearchIn
是否以 Some string
开头。
如果有帮助请告诉我。
如何使用 DAX 编写表达式来检查字符串是否以其他字符串开头?示例:ext.example 以 "ext."
开头你可以使用文本函数
=FIND("BMX","line of BMX racing goods")
检查
https://msdn.microsoft.com/en-us/library/ee634938.aspx
https://msdn.microsoft.com/en-us/library/ee634882(v=sql.120).aspx
这个表达式起作用了,
NewColumn =
IF (
LEFT ( TableName[ColumnToSearchIn], LEN ( "Some string" ) ) = "Some string",
"Starts With",
"Does not start with"
)
此表达式将确定 ColumnToSearchIn
是否以 Some string
开头。
如果有帮助请告诉我。