我有一栏图,希望24小时显示无发票销售的百分比,24小时显示无发票销售的百分比。 这些数据应当按日期分类,因此,在24小时内,我可以看到发票销售额的百分比,而不是发票销售。
我的数据集包括:
- sales id,
- sales status (only invoiced are permitted and I took care of that in my query),
- date and
nbDays
, which is bound to a function that determines if the sale is invoiced in 24h. (if the nbDays < 3 it s in 24h otherwise it s not)
我的图表显示: 1-24年发票,2-24小时未发票。 因此,我把日田拖到类田地,向数据区出售两次。 设想是使用24小时开出的发票,而其他则使用。
我怎么能写有条件的表述,以达到这一要求,使数据领域销售根据我的情况显示数据?
我试图这样做,但却没有工作:
=count(iif(fields!nbDays.value <3, 1,0))
并且:
=iif(fields!nbDays.value <3, count(fileds!salesid.value),0)