我在pentaho儀表板中添加了提示。我想將'ALL'類別添加到該提示中,這意味着當我選擇「ALL」時,它不應該過濾數據,它應該獲取所選類別下的所有數據。你們能幫我嗎?將「全部」選項添加到提示Pentaho儀表板?
1
A
回答
0
爲此,請使用Type SQL List和「All」作爲值(注意區分大小寫)。示例查詢是:
SELECT DISTINCT 'All' AS VAL, 'ALL TERRITORIES' AS DESC FROM customer_w_ter
UNION ALL
select DISTINCT TERRITORY, TERRITORY from customer_w_ter
0
@邁克爾克里斯托弗 我用下面PostgreSQL的查詢來獲取數據。
select 'All' as accountclass ,status ,count(guaccountid) as count from sms_accountinformation group by status union select distinct accountclass ,status ,count(guaccountid)as count from sms_accountinformation group by accountclass,status order by accountclass,status
有沒有替代品沒有硬編碼?
數據集看起來如下
"All";"Active";2288 "All";"PD";257 "All";"TD";777 "Customer";"Active";2275 "Customer";"PD";152 "Customer";"TD";359 "Dealer";"Active";13 "Dealer";"PD";105 "Dealer";"TD";418
0
你需要在你的查詢做的是與「ALL」數據添加一個額外的行。在編寫ALL部分的查詢時,不需要執行group by子句。檢查下面的代碼(希望這將是更清晰):
select distinct
accountclass,
status,
count(guaccountid)as count
from sms_accountinformation
group by accountclass,status order by accountclass,status
union
select 'ALL' as accountclass,
'ALL' as status,
'ALL' as count
from sms_accountinformation
這會爲你抓取與「ALL」的結果集爲一個更行,你可以在你的過濾器列表中使用它。
希望它能幫助:)
相關問題
- 1. 將頁面添加到WP儀表板
- 2. mongodb和pentaho CDE儀表板
- 3. Pentaho的 - 儀表板設計
- 4. 將小部件添加到post-new.php我的儀表板?
- 5. 使用PHP將wordpress小部件添加到儀表板
- 6. Umbraco 7將新項目添加到儀表板
- 7. 如何將新項目添加到CruiseControl.NET網絡儀表板
- 8. 通過儀表板將項目添加到作品集頁面
- 9. DJANGO:將「選擇全部」選項添加到ModelMultipleChoiceField?
- 10. 缺少儀表板選項
- 11. 將儀表板部署到Crystal Reports
- 12. Pentaho儀表板編輯數據
- 13. Pentaho儀表板錯誤處理組件
- 14. Pentaho CDE儀表板之間的鏈接
- 15. 更改pentaho儀表板jquery版本
- 16. 使用提示將直接數據庫查詢創建的對象分析添加到儀表板並提示
- 17. 將「全選」選項添加到html中的下拉列表中
- 18. 如何爲自動更新儀表板添加Deepsee儀表板小部件?
- 19. 如何將圖表添加到Kibana 4中的儀表板?
- 20. 如何查看Pentaho中的外部用戶的CDE儀表板
- 21. 使用backbone.js和jquery動態地將小部件添加到儀表板
- 22. 如何在wordpress中將視頻添加到儀表板
- 23. 如何將heroku回調URL添加到Facebook儀表板?
- 24. 將google analytics添加到php儀表板中
- 25. 如何通過儀表板將內容添加到頁腳?
- 26. 將自定義控件添加到Kibana儀表板?
- 27. 將實體添加到Symfony2 SonataAdminBundle儀表板
- 28. 如何將新頁面添加到客戶帳戶儀表板?
- 29. 如何將Web視圖添加到儀表板吉拉
- 30. 將幫助者添加到ActiveAdmin儀表板
而在MDX您可以通過與self_and_before標籤做的事情相當於做的所有成員,並且希望集之間或使用後代工會功能的下一級在一起。 – nsousa 2015-02-12 09:54:53