Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

applying template to existing report

Status
Not open for further replies.

reacha

Programmer
Jun 9, 2010
83
US
i have one crystal template which has one formula

EffectiveDate: RevCycleTemplateEffectiveDate + ToText(DataDate)

I tried applying this template to my report.
when applied the template i was not getting the formula which is in template and when i try to create that formula in my report its erroring out

Please help me out!!

Thanks,
reacha
 
What you've got doesn't look like Crystal. It may be some Stored Procedure.

What are you trying to get? If you want to display two dates, you'd need something like
Code:
RevCycleTemplateEffectiveDate & " " & ToText(DataDate)
If you want to add dates, use DateAdd, the HELP function should give you details.

Just what error do you get? Most of them give you a fair clue about the problem.



[yinyang] Madawc Williams (East Anglia, UK). Using Crystal 11.5 with SQL and Windows XP [yinyang]
 
The problem was solved..

RevCycleTemplateEffectiveDate is the respository custom function that i need to add to the report and use that in the report...

I was not adding that to report and was trying to create a formula based on that

Thanks for your reply and help...

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top