0
將帶來的晶體選擇公式根據選擇的前兩個參數,我試圖找到一個公式,該公式將根據選擇中的前兩個參數跟隨基於公式中的其他參數的其他參數。所以這就是我迄今爲止所遇到的問題。我遇到的問題是,如果不是所有的公式都被選中,那麼我在報告上就沒有任何可打印的內容。所以如果我選擇{Sig1}和{Sig4},報告就會變成空白。根據第一個參數
{table.client} = {?client#} and
{table.signature1} = {?Sig1}
//to then bring only the below selected parameters based from the {client#} and {?Sig1}
parameters. Not all parameters will be selected as well.
({table.signature2} = {?Sig2} or {?Sig2} = "") or
({table.signature3} = {?Sig3} or {?Sig3} = "") or
({table.signature4} = {?Sig4} or {?Sig4} = "")
任何幫助提前非常感謝。 希望我是清楚的
你需要測試空參數值,而不是空白? – Beth
問題在於我給用戶選項留下任何參數SIG2-SIG4爲空,因爲報表參數下拉列表將顯示空值或者如果還有一個值未被選中。 – Dagz200