Not quite an average...

jediwa1ker

New Member
Joined
Jun 24, 2013
Messages
4
Veh Type
Sun
Mon
Tues
Wed
Thu
Fri
Sat
Total
1
2
2
2
2
2
2
2
2
1
1
2
2
2
2
2
3
2
2
2
1
1
1
1

<tbody>
</tbody>
Can anyone advise on how I could automate the below calc, we do manually at the moment but there is probably and easy formula I am overlooking.... we have a scenario where I can charge for a parking space if the space is used for 5 or more days in the week, so from the table above for Veh type 1 I would charge 2 spaces, veh type 2, 2 spaces and veh type 3, 1 space....
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
try this, Cols J, K & L are helper columns
copy I2 down, J2 down and across

ABCDEFGHIJKL
1Veh TypeSunMonTuesWedThuFriSatTotal123
2122222222770
3211222222750
4322211111730
5333322222773

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
I2=COUNTIF(J2:L2,">=5")

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

Array Formulas
CellFormula
J2{=MAX(FREQUENCY(IF($B2:$H2>=J$1,ROW($B2)),IF($B2:$H2>=J$1,ROW($B2))))}

<thead>
</thead><tbody>
</tbody>
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
Note: Do not try and enter the {} manually yourself

<tbody>
</tbody>
 
Last edited:
Upvote 0
sorry, that didn't work


try this, Cols J, K & L are helper columns
copy I2 down, J2 down and across

ABCDEFGHIJKL
1Veh TypeSunMonTuesWedThuFriSatTotal123
2122222222770
3211222222750
4322211111730
5333322222773

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
I2=COUNTIF(J2:L2,">=5")

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

Array Formulas
CellFormula
J2{=MAX(FREQUENCY(IF($B2:$H2>=J$1,ROW($B2)),IF($B2:$H2>=J$1,ROW($B2))))}

<thead>
</thead><tbody>
</tbody>
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
Note: Do not try and enter the {} manually yourself

<tbody>
</tbody>
 
Upvote 0
ok, try this


Book1
ABCDEFGHIJKL
1Veh TypeSunMonTuesWedThuFriSatTotal123
2122212221730
3211222222750
4322211111730
5333322222773
Sheet1
Cell Formulas
RangeFormula
I2=COUNTIF(J2:L2,">=5")
J2{=MAX(FREQUENCY(IF($B2:$H2>=J$1,COLUMN($B2:$H2)),IF($B2:$H2$B2:$H2))))}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0
CSE formula (up to10 cars):
=MAX((MMULT(--(B2:H2>=ROW($1:$10)),ROW($1:$7)^0)>4)*ROW($1:$10))
 
Upvote 0
It gives 2 on my sheet (not 1) because 2 cars are in for 5 or more days in the week. I did not infer that the days had to be sequential.
 
Upvote 0
It gives 2 on my sheet (not 1) because 2 cars are in for 5 or more days in the week. I did not infer that the days had to be sequential.

after read the OP again, you may be right.
can the OP confirm or otherwise?
 
Upvote 0
CSE formula (up to10 cars):
=MAX((MMULT(--(B2:H2>=ROW($1:$10)),ROW($1:$7)^0)>4)*ROW($1:$10))



I cant get this to work, I assume I am doing something wrong - which cell are you entering the data into? Do I need any helper data? Will this calc vehicle type by row by row? TIA
 
Upvote 0

Forum statistics

Threads
1,215,343
Messages
6,124,400
Members
449,156
Latest member
LSchleppi

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top