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!

Writing a Report with Goldmine 6.0

Status
Not open for further replies.

sandingdude

IS-IT--Management
Jun 26, 2002
109
US
I am attempting to add a field to one of the reports.

I was able to bring over the fields I need the only they are no calcuating the value I need.

I want it to do this calculation:

(2/5) *100 = 40

And on the report just put 40.

But inside its showing me the equation (2/5) * 100

Here is my expression:

(&syfield20"/"+&syfield12+)"*"+&100+

Did I forget the equals somewhere?

Thanks in advance.
 
have you tried using dbase expressions?

ex. ((contact2->udef20)/(contact2->udef12))*100

 
Adecaro

Thank you for your response.

I havent tried using dbase expressions. Is there a good web resource I can use to learn dBASE syntax?

Will your sample expression work? Or do I need to replace your field names with my field names?

Thanks,

Dave
 

That is a manual direct from FrontRange on Dbase expressions. I am not entirely sure if the above code will work or not, as your initial code was apparently over my head(not big in SQL). Feel free to try it, you will need to replace the field names though. Dbase is also refered to as Xbase, for future reference and web searches.

just a quick tip, your field will be located in one of two places in goldmine, either contact1 tabel or contact2 table. This is the Dbase format for denoting a field in goldmine (contact1(or2)->fieldname)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top