如何在powerpivot sql查询中引用Excel单元格?

时间:2014-09-30 06:49:03

标签: sql excel syntax cell powerpivot

我正在尝试在powerpivot查询中使用excel单元作为过滤参考,但我找不到正确的语法。

我想知道我需要编写什么语法才能将查询中的日期替换为excel单元格中的日期。

powerpivot中的查询示例:

select c.Id,
       c.age
from customer as c   '(lets say i imported this table from the database)
where c.age > 45

我试图知道如何替换值:45例如excel cell:

select c.Id,
       c.age
from customer as c   
where c.age > [sheet1$a1:a1]     '(this cell has the number 45 in it)

并且这不起作用。

0 个答案:

没有答案