0
假設我有新生和舊生的記錄。我想要做的是這樣的如何計算水晶報表中的選定記錄
Count({StudentInformation.Surname}) Where {StudentInformation.Status} = "old"
任何想法?
假設我有新生和舊生的記錄。我想要做的是這樣的如何計算水晶報表中的選定記錄
Count({StudentInformation.Surname}) Where {StudentInformation.Status} = "old"
任何想法?
創建公式X:
if {StudentInformation.Status} = "old" then 1 else 0
然後你就可以在這個公式總結:
sum({@X})
感謝,它完美 –