gpt4 book ai didi

excel - 使用 DAX 的表达式中的 "starts with"

转载 作者:行者123 更新时间:2023-12-04 19:53:25 24 4
gpt4 key购买 nike

如何用 DAX 编写表达式来检查一个字符串是否由另一个字符串开始?示例:ext.example 以“ext”开头。

最佳答案

这个表达式完成了工作,

NewColumn =
IF (
LEFT ( TableName[ColumnToSearchIn], LEN ( "Some string" ) ) = "Some string",
"Starts With",
"Does not start with"
)

此表达式将确定 ColumnToSearchIn 是否以 Some string 开头。

如果这有帮助,请告诉我。

关于excel - 使用 DAX 的表达式中的 "starts with",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38767000/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com