Click here to Skip to main content
15,893,486 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I need to find the Multiplication formula of a single field in Crystal Report..Its the multiplication summary of the values of a single field...

Suppose the Field is:

Multiplication

24
35
45
-10

The result is -10*45*35*24

Whats the formula for that?
I tried the formula:
{DataTable1.Multiplication}*{DataTable1.Multiplication}..But its not working...
Plz Help
Posted
Comments
thatraja 19-Feb-11 2:10am    
are you trying the formula in crystal report? how?
/*But its not working...*/
what do you mean? any error message?
include the things in your question. If possible attach link for the screen-shot for the issue.
Member 7686672 19-Feb-11 3:48am    
I am trying the formula in Crystal Report...Its in the Formula editor in the Formula Fields section of the Field Explorer...I cant get the current multiplication result of the numbers as the output in the Crystal Report...
Member 11113654 3-Feb-15 6:19am    
(count({TRNCYL.CYL_CAP}) * ({TRNCYL.CYL_CAP}))* ({TRNCYL.CYL_RATE}) how to solved

Hope csharp-crystal-reports-formula-field[^] article might help you.
 
Share this answer
 
Comments
Member 7686672 19-Feb-11 3:50am    
This shows the product of numbers of two different fields...I need the product of all the numbers of a single field and display the summarized multiplication result...The number of values which displays in the field is dynamic..
(count({TRNCYL.CYL_CAP}) * ({TRNCYL.CYL_CAP}))* ({TRNCYL.CYL_RATE})
 
Share this answer
 
v3
({TRNCYL.CYL_CAP}) * ({TRNCYL.CYL_CAP}))* ({TRNCYL.CYL_RATE})
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900