Hey guys. Here's my problem. I have a data dump from another program that I only need certain numbers from. The data dump contains time-stamped transactions that occurred during a given month. The time-stamp contains the date and the hour. Each transaction takes up around 4 rows but always 8 columns. All 3-5 or so rows of each transaction have the same time-stamp in column 2. The numbers I need are the price of the transaction, which is only listed on the last row of that transaction in column 8. The other price rows are blank. To make it even more complicated, sometimes multiple transactions can be done in one hour, but not necessarily every hour has a transaction. My final result needs to be a column going down 744 rows for each hour in a 31 day month with the minimum price of each hour's transactions.
I tried using a sum array based on the day and hour, but on hours with multiple transactions it, of course, summed the prices. I also tried the same thing but with min instead of sum, but since most of the cells are blank, it always returned 0.
Thanks for the help, and if you need more info just let me know.
I tried using a sum array based on the day and hour, but on hours with multiple transactions it, of course, summed the prices. I also tried the same thing but with min instead of sum, but since most of the cells are blank, it always returned 0.
Thanks for the help, and if you need more info just let me know.