本文介绍了[已解决]水晶报告的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Command开发
Crystal Report
这是我的查询:

从InvoiceMaster中选择VechicleNo,TransportName,InvoiceNo,InvoiceDate,CustomerId,TotalAmount,其中InvoiceMaster.AddId = 1

这是我的配方记录:

其中MONTH(InvoiceDate)> = {?Month1}和MONTH(InvoiceDate)< = {?Month2}和CustomerId = {?CustomerId}

在提供值之后,我也看不到主报表预览"中的任何值.我无法理解我哪里出错了.

I am developing a Crystal Report using Command
This is my Query:

select VechicleNo,TransportName,InvoiceNo,InvoiceDate,CustomerId,TotalAmount from InvoiceMaster where InvoiceMaster.AddId=1

This is my Formula Record:

where MONTH(InvoiceDate)>={?Month1} and MONTH(InvoiceDate)<={?Month2} and CustomerId={?CustomerId}

I am not able to see any values in the Main Report Preview after giving the values also. I am not able to understand where did i gone wrong.

推荐答案


这篇关于[已解决]水晶报告的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 00:17