Using Offset with MAX

username_rand

New Member
Joined
Jan 27, 2019
Messages
20
Hi, I have a workbook with data showing number of visitors at every hour for different dates. I have created another sheet which only shows the total number for each date. At first i used the following formula OFFSET('Sheet1'!$E$2,(ROW('Sheet1'!E1)*16-1),0) to copy the value in the 16th row which is the final count of visitors since the data is cumulative, but since then, working hours have changed so the formula returns blanks since the 16th row is no longer the final count. I can change it manually but the working hours are not yet final, is there a way to use OFFSET with MAX to get the maximum value from each 16 row without having to update the formula each time the working hours change? And it is worth mentioning that i have no control over how the data is filled in the sheet (see image of Sheet1 for a sample)

Untitled.png
 
maybe Power Query
SourceResult
DateHourGate 1Gate 2No. of VisitorsDateNo. of Visitors
01/06/202009:00:0027235001/06/20204705
10:00:00983613402/06/20204728
11:00:0011413124503/06/20203028
12:00:00610320930
13:00:0011063061412
14:00:0012303171547
15:00:0013453531698
16:00:0014602431703
17:00:0015753551930
18:00:0016907952485
19:00:00180512353040
20:00:00192016753595
21:00:00203521154150
22:00:00215025554705
23:00:00226524404705
02/06/202009:00:00304373
10:00:0010057157
11:00:00112156268
12:00:00630323953
13:00:0012042311435
14:00:0012303401570
15:00:0012564651721
16:00:0012824441726
17:00:0013086451953
18:00:00133411742508
19:00:00136017033063
20:00:00138622323618
21:00:00141227614173
22:00:00143832904728
23:00:00146432644728
03/06/202009:00:00162238
10:00:002597122
11:00:0061172233
12:00:00671247918
13:00:0010783221400
14:00:0011383971535
15:00:0012144721686
16:00:0011445471691
17:00:0012966221918
18:00:0017766972473
19:00:0022567723028

Rich (BB code):
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    NotNull = Table.SelectRows(Source, each [Hour] <> null and [Hour] <> ""),
    FillD = Table.FillDown(NotNull,{"Date"}),
    Group = Table.Group(FillD, {"Date"}, {{"Count", each _, type table}}),
    Last = Table.AddColumn(Group, "Last", each Table.Last([Count])),
    Expand = Table.ExpandRecordColumn(Last, "Last", {"No. of Visitors"}, {"No. of Visitors"}),
    Type = Table.TransformColumnTypes(Expand,{{"Date", type date}})
in
    Type
Although it is a great solution but unfortunately i cannot download anything, it is out of my hands
 
Upvote 0

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"

Forum statistics

Threads
1,214,985
Messages
6,122,605
Members
449,089
Latest member
Motoracer88

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