ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Mileage Calculation (https://www.excelbanter.com/excel-worksheet-functions/57060-mileage-calculation.html)

Cathy Landry

Mileage Calculation
 
Hello,

I need to calculate the current IRS mileage rate and then have a combined
total by fac# example:

11/01 10 miles to be charged to fac# 111
11/02 10 miles to be charged to fac# 222
11/03 10 miles to be charged to fac# 111
11/04 10 miles to be charged to fac# 222

The form we are currently using does calculate the mileage rate for each
line but does not combine all the mileage on different dates to the same fac.
Ideally, the total column would only show 111 & 222 once.

Possible?

Thank you
Cathy

Biff

Mileage Calculation
 
Hi!

11/01 10 miles to be charged to fac# 111


Is that all in one cell?

Biff

"Cathy Landry" wrote in message
...
Hello,

I need to calculate the current IRS mileage rate and then have a combined
total by fac# example:

11/01 10 miles to be charged to fac# 111
11/02 10 miles to be charged to fac# 222
11/03 10 miles to be charged to fac# 111
11/04 10 miles to be charged to fac# 222

The form we are currently using does calculate the mileage rate for each
line but does not combine all the mileage on different dates to the same
fac.
Ideally, the total column would only show 111 & 222 once.

Possible?

Thank you
Cathy




Cathy Landry

Mileage Calculation
 
Hi Biff,

No, sorry I wasn't more clear. This is how it would be setup

COLUMNS:

A B C D F G
H
DATE MILES FAC# TOTAL | TOTAL BY FAC
11/01 10 111 4.85 | FAC# Ttl MLS
TOTAL
11/02 10 222 4.85 | 111 20
9.70
11/03 10 111 4.85 | 222 20
9.70
11/04 10 222 4.85 |



"Biff" wrote:

Hi!

11/01 10 miles to be charged to fac# 111


Is that all in one cell?

Biff

"Cathy Landry" wrote in message
...
Hello,

I need to calculate the current IRS mileage rate and then have a combined
total by fac# example:

11/01 10 miles to be charged to fac# 111
11/02 10 miles to be charged to fac# 222
11/03 10 miles to be charged to fac# 111
11/04 10 miles to be charged to fac# 222

The form we are currently using does calculate the mileage rate for each
line but does not combine all the mileage on different dates to the same
fac.
Ideally, the total column would only show 111 & 222 once.

Possible?

Thank you
Cathy





Roger Govier

Mileage Calculation
 
Hi Cathy

Try
=SUMPRODUCT(--($C$2:$C$100=111),$B$2:$B$100) for total miles
=SUMPRODUCT(--($C$2:$C$100=111),$D$2:$D$100) for total value
change length of ranges to suit.
Substitute cell reference holding 111 or 222 to make it easier to pick up
the the individual FAC# numbers

=SUMPRODUCT(--($C$2:$C$100=$F2),$B$2:$B$100) for Miles and FAC#111

Regards

Roger Govier


Cathy Landry wrote:
Hi Biff,

No, sorry I wasn't more clear. This is how it would be setup

COLUMNS:

A B C D F G
H
DATE MILES FAC# TOTAL | TOTAL BY FAC
11/01 10 111 4.85 | FAC# Ttl MLS
TOTAL
11/02 10 222 4.85 | 111 20
9.70
11/03 10 111 4.85 | 222 20
9.70
11/04 10 222 4.85 |



"Biff" wrote:


Hi!


11/01 10 miles to be charged to fac# 111


Is that all in one cell?

Biff

"Cathy Landry" wrote in message
...

Hello,

I need to calculate the current IRS mileage rate and then have a combined
total by fac# example:

11/01 10 miles to be charged to fac# 111
11/02 10 miles to be charged to fac# 222
11/03 10 miles to be charged to fac# 111
11/04 10 miles to be charged to fac# 222

The form we are currently using does calculate the mileage rate for each
line but does not combine all the mileage on different dates to the same
fac.
Ideally, the total column would only show 111 & 222 once.

Possible?

Thank you
Cathy





Cathy Landry

Mileage Calculation
 
Thank you Roger!

"Roger Govier" wrote:

Hi Cathy

Try
=SUMPRODUCT(--($C$2:$C$100=111),$B$2:$B$100) for total miles
=SUMPRODUCT(--($C$2:$C$100=111),$D$2:$D$100) for total value
change length of ranges to suit.
Substitute cell reference holding 111 or 222 to make it easier to pick up
the the individual FAC# numbers

=SUMPRODUCT(--($C$2:$C$100=$F2),$B$2:$B$100) for Miles and FAC#111

Regards

Roger Govier


Cathy Landry wrote:
Hi Biff,

No, sorry I wasn't more clear. This is how it would be setup

COLUMNS:

A B C D F G
H
DATE MILES FAC# TOTAL | TOTAL BY FAC
11/01 10 111 4.85 | FAC# Ttl MLS
TOTAL
11/02 10 222 4.85 | 111 20
9.70
11/03 10 111 4.85 | 222 20
9.70
11/04 10 222 4.85 |



"Biff" wrote:


Hi!


11/01 10 miles to be charged to fac# 111

Is that all in one cell?

Biff

"Cathy Landry" wrote in message
...

Hello,

I need to calculate the current IRS mileage rate and then have a combined
total by fac# example:

11/01 10 miles to be charged to fac# 111
11/02 10 miles to be charged to fac# 222
11/03 10 miles to be charged to fac# 111
11/04 10 miles to be charged to fac# 222

The form we are currently using does calculate the mileage rate for each
line but does not combine all the mileage on different dates to the same
fac.
Ideally, the total column would only show 111 & 222 once.

Possible?

Thank you
Cathy





Roger Govier

Mileage Calculation
 
Hi Cathy

You're very welcome. Glad it worked for you.
Thanks for the feedback.
Regards

Roger Govier


Cathy Landry wrote:
Thank you Roger!

"Roger Govier" wrote:


Hi Cathy

Try
=SUMPRODUCT(--($C$2:$C$100=111),$B$2:$B$100) for total miles
=SUMPRODUCT(--($C$2:$C$100=111),$D$2:$D$100) for total value
change length of ranges to suit.
Substitute cell reference holding 111 or 222 to make it easier to pick up
the the individual FAC# numbers

=SUMPRODUCT(--($C$2:$C$100=$F2),$B$2:$B$100) for Miles and FAC#111

Regards

Roger Govier


Cathy Landry wrote:

Hi Biff,

No, sorry I wasn't more clear. This is how it would be setup

COLUMNS:

A B C D F G
H
DATE MILES FAC# TOTAL | TOTAL BY FAC
11/01 10 111 4.85 | FAC# Ttl MLS
TOTAL
11/02 10 222 4.85 | 111 20
9.70
11/03 10 111 4.85 | 222 20
9.70
11/04 10 222 4.85 |



"Biff" wrote:



Hi!



11/01 10 miles to be charged to fac# 111

Is that all in one cell?

Biff

"Cathy Landry" wrote in message
...


Hello,

I need to calculate the current IRS mileage rate and then have a combined
total by fac# example:

11/01 10 miles to be charged to fac# 111
11/02 10 miles to be charged to fac# 222
11/03 10 miles to be charged to fac# 111
11/04 10 miles to be charged to fac# 222

The form we are currently using does calculate the mileage rate for each
line but does not combine all the mileage on different dates to the same
fac.
Ideally, the total column would only show 111 & 222 once.

Possible?

Thank you
Cathy





All times are GMT +1. The time now is 01:18 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com