REPORT %

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do i display % in my report below :

Branch Vol %
A 10
B 30
C 60
---
100

I expect result for A-10% , B-30% & C-60%

Thanks
 
Hi zyus,

How about "(Vol/Total)*100" to get the percentage, then format as a
percentage if you want to see the percent sign beside each one.

Hope this helps.

Damian.
 
Cannot be done....error "total"

Damian S said:
Hi zyus,

How about "(Vol/Total)*100" to get the percentage, then format as a
percentage if you want to see the percent sign beside each one.

Hope this helps.

Damian.
 
[Vol]*100/sum([vol]) ?


Damian S said:
Hi zyus,

How about "(Vol/Total)*100" to get the percentage, then format as a
percentage if you want to see the percent sign beside each one.

Hope this helps.

Damian.
 
The field "Total" in my example was assuming that you had a field called
"total".

Try sum([Vol]) if you don't have the Total calculated somewhere...

Damian.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top