
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
RE:Ratio
Hi all,
I need to calucalte the raio between
Frmulae: Onsite Hours/Offshore Hours
Dim:Period
sample data lik dis
year | period | on_0ff_flag | total_hrs | total_amt |
2011 | Per10 | Onsite | 152 | 456 |
2011 | Per10 | Onsite | 152 | 456 |
2011 | Per10 | Onsite | 72 | 216 |
2011 | Per10 | Offshore | 152 | 304 |
2011 | Per10 | Offshore | 152 | 304 |
2011 | Per10 | Offshore | 8 | 16 |
2011 | Per10 | Offshore | 142 | 284 |
how can i achve dis?
thanks
Suresh
- « Previous Replies
-
- 1
- 2
- Next Replies »


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Maybe with an expression like
=Sum({<on_0ff_flag = {'Onsite'}>} total_hrs) / Sum({<on_0ff_flag = {'Offshore'}>} total_hrs)


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi try this
=SUM({$< on_off_flag={Onsite}>}total_hrs) /SUM({$< on_off_flag={Offshore}>}total_hrs)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try as swuehl suggested, then in number tab, select show in percent(%)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thnx swuel..
but i need from total count of offshre and onsite.....
example:
onsite :376/830
in 830 total offshre +onsite...
how can i?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this:
=Sum({<on_0ff_flag = {'Onsite'}>} total_hrs)/Sum(total_hrs)


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Maybe just like
=Sum({<on_0ff_flag = {'Onsite'}>} total_hrs) / Sum(total_hrs)
for onsite and
=Sum({<on_0ff_flag = {'Offshore'}>} total_hrs) / Sum(total_hrs)
for offshore.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thanx swuehl...
this is
=Sum({<onsite_offshore_flag = {'Onsite'}>} total_hrs)/Sum({<onsite_offshore_flag = {'Offshore'}>} total_hrs)&'%'
wat i used but in textbox it is shwng 0.3191850594%
how to show in 2digits lik 31%..?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try like this:
=num(Sum({<onsite_offshore_flag = {'Onsite'}>} total_hrs)/Sum({<onsite_offshore_flag = {'Offshore'}>} total_hrs)*100,'#.##')&'%'

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this
=Num(Sum({<onsite_offshore_flag = {'Onsite'}>} total_hrs)/Sum({<onsite_offshore_flag = {'Offshore'}>} total_hrs), '##.00%')

- « Previous Replies
-
- 1
- 2
- Next Replies »