Find the Largest number based on date and trade

Garvey1973

New Member
Joined
Nov 18, 2015
Messages
8
I am trying to find the largest number based on the date, then quantity on trade for each day of the month. I currently do it manually each day but am looking for a formula to do it for me without using the ctrl+shift+enter function. Looking for the formula in largest trade column

DateQuantityQuantity on tradeLargest trade
1/133
1/19
1/1142323
1/210
1/21020
1/232
1/284040
1/37
1/34
1/3314
1/377
1/31111
14

<tbody>
</tbody>


Any help would be appreciated.
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Is the location of 14 deliberate in the column for Largest trade as it does not align with the location in Quantity on trade?
 
Upvote 0
yes --- the 14 is the total amount of the parts in the individual trades in the previous column --- for example if I buy 7, buy 4 and sell 3 --- the absolute is 14
 
Upvote 0
yes --- the 14 is the total amount of the parts in the individual trades in the previous column --- for example if I buy 7, buy 4 and sell 3 --- the absolute is 14

This 14 is reported at the row of 1/3, 11, and 11, not in the row of 1/3, 3, and 14. Is that intended?
 
Upvote 0
yes --- so each trade may consist of more than 1 part - on 1/3, the 7, 4 and 3 in the quantity column are all part of 1 trade, making it 14 in the quantity on trade column ---- i then need to find the largest number in the largest trade column based on the date.
 
Upvote 0
yes --- so each trade may consist of more than 1 part - on 1/3, the 7, 4 and 3 in the quantity column are all part of 1 trade, making it 14 in the quantity on trade column ---- i then need to find the largest number in the largest trade column based on the date.

If you have MAXIFS on your system, just enter in D2 and copy down:

=IF(MAXIFS($D$2:$D$13,$A$2:$A$13,A4)=C4,MAXIFS($D$2:$D$13,$A$2:$A$13,A4),"")

Otherwise, in D2 control+shift+enter, no just enter, and copy down:

=IF(MAX(IF($A$2:$A$13=A4,$C$2:$C$13))=C4,MAX(IF($A$2:$A$13=A4,$C$2:$C$13)),"")
 
Upvote 0
If you have MAXIFS on your system, just enter in D2 and copy down:

=IF(MAXIFS($D$2:$D$13,$A$2:$A$13,A4)=C4,MAXIFS($D$2:$D$13,$A$2:$A$13,A4),"")

Otherwise, in D2 control+shift+enter, no just enter, and copy down:

=IF(MAX(IF($A$2:$A$13=A4,$C$2:$C$13))=C4,MAX(IF($A$2:$A$13=A4,$C$2:$C$13)),"")



So I cant get this to work --- what I am looking to do is to get the largest number in column c (quantity on trade) for each trade date --- to be displayed in column d on the last line for that particular date. In my example there would be 3 (23 30 14) the line inbetween would be blank because of the same date
 
Upvote 0

Book1
ABCDE
1DateQuantityQuantity on tradeLargest trade
21-Jan33
31-Jan9
41-Jan14232323
52-Jan10
62-Jan1020
72-Jan32
82-Jan8404040
93-Jan7
103-Jan4
113-Jan3141414
123-Jan77
133-Jan1111
14
15MAXIFSMAX/IF
Sheet1


Do you have MAXIFS? If yes...

=IF(MAXIFS($C$2:$C$13,$A$2:$A$13,A2)=C2,MAXIFS($C$2:$C$13,$A$2:$A$13,A2),"")

Othwerwise, control+shift+enter…

=IF(MAX(IF($A$2:$A$13=A2,$C$2:$C$13))=C2,MAX(IF($A$2:$A$13=A2,$C$2:$C$13)),"")

If the results must be aligned with the last occurrences of dates (I kept asking asking about this)…

=IF($A2="","",IF(COUNTIFS($A$2:$A2,A2)=COUNTIFS($A$2:$A$13,A2),MAXIFS($C$2:$C$13,$A$2:$A$13,A2),""))
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,893
Members
449,097
Latest member
dbomb1414

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