英文:
"Cannot find name" when using the ORDERBY DAX function
问题
我使用了这里提供的示例,该示例出现在这篇文章中,该文章讲述了使用INDEX函数在我的仪表板中查找第二大的客户。这个度量工作正常,但是由于某种原因,当我引用[@Amt]列时,它变成了灰色,并显示错误消息"找不到名称"。我在这里做错了吗?
英文:
I used the example here given in this this article about the INDEX function to find the second top customer in my dashboard. The measure works fine, but for some reason when I reference the [@Amt] column it becomes grey and an error shows saying "Cannot find name". Am I doing something wrong here?
答案1
得分: 1
你可以安全地忽略下划线。INDEX()是一个新函数,有时需要几个版本才能赶上智能感知。请放心,引擎完全正确解释了您的代码。
英文:
You can safely ignore the underline. INDEX() is a new function and sometimes it takes a couple of releases for the intellisense to catch up. Rest assured that the engine is interpreting your code perfectly fine.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论