我給出了結合查詢使其成爲儀表板中的儀表板的任務.. 這樣的事情。施加結合查詢,使其成爲儀表板中的儀表板
如何可以將它們組合起來成儀表板..
例
Total_count total_active total_inactive Active% inactive%
100 20 80 0.5 0.8
上述結果是通過執行單獨queries..with濾波器得到:
select count(id) from table -- gives me 100(Total_count)
select count(id) from table where status like '%Active%' --gives me 20(total_active)
(Total_count)-(total_active) gives me inactive..
Active%=total_active/Total_count
Inactive%=total_inactive/Total_count
但我我無法投入01
how do i get Total_count and Total_active in one sheet
當我在狀態列上創建一個過濾器(活動)..它也適用於Total_count呢?
is it possible to create calculations across sheets?
say in sheet i got count(total_customers) in another sheet i got count(Active_customers)
now i need to substract values from these 2 sheets how do i do it?