我目前正在尝试在Google表格中运行查询,但希望包含更多数据。这是我目前的代码:
=query('KI Site Visit'!A1:Y38,"Select A,max(D)
where D is not null
group by A label max(D)
'KI Most Recent Visit Date'",1)
返回名称列(A列)及其最新列表(D列)。我还希望在H和Q列中看到最近访问的相关数据。如何添加这些列?
我想要一个所有网站访问的列表,但只需要每个人最近的访问次数,我还希望看到最近访问的H和Q列数据?有什么建议吗?
答案 0 :(得分:0)
看看是否有效:
$http.get('/api/dashboard', {
headers: {
// Set header for the request here
authorization: token
}
})
.success(function(res) {
// Success
});