Good evening everyone,
I'm trying to pull a list of trade data from our Trade History and get the Date, # Shares and Price for all trades matching the stock ticker. I've found a series of nested functions to pull the information out but I'm having a peculiar problem.
I'm pulling all the data just fine, but I need to drag down for a larger number of rows so in the future as we continue to fill our trade history, data appears in my secondary table. But, I'm getting errors because there are less number of trades than rows I'm dragging down. Naturally I tried IFERROR, but for some reason when I press CTRL+SHIFT+ENTER, it enters, but it does NOT apply the changes.
Here is the equation I'm using:
=INDEX('Transaction History'!D$3:D$1000,SMALL(IF('Transaction History'!$C$3:$C$1000=$B$1,ROW('Transaction History'!D$3:D$1000)-ROW('Transaction History'!D$3)+1),ROWS('Transaction History'!D$3:'Transaction History'!D3)))
And this is what I would like to apply:
=IFERROR(=INDEX('Transaction History'!D$3:D$1000,SMALL(IF('Transaction History'!$C$3:$C$1000=$B$1,ROW('Transaction History'!D$3:D$1000)-ROW('Transaction History'!D$3)+1),ROWS('Transaction History'!D$3:'Transaction History'!D3))),"")
Any ideas?
Thanks in advance!
I'm trying to pull a list of trade data from our Trade History and get the Date, # Shares and Price for all trades matching the stock ticker. I've found a series of nested functions to pull the information out but I'm having a peculiar problem.
I'm pulling all the data just fine, but I need to drag down for a larger number of rows so in the future as we continue to fill our trade history, data appears in my secondary table. But, I'm getting errors because there are less number of trades than rows I'm dragging down. Naturally I tried IFERROR, but for some reason when I press CTRL+SHIFT+ENTER, it enters, but it does NOT apply the changes.
Here is the equation I'm using:
=INDEX('Transaction History'!D$3:D$1000,SMALL(IF('Transaction History'!$C$3:$C$1000=$B$1,ROW('Transaction History'!D$3:D$1000)-ROW('Transaction History'!D$3)+1),ROWS('Transaction History'!D$3:'Transaction History'!D3)))
And this is what I would like to apply:
=IFERROR(=INDEX('Transaction History'!D$3:D$1000,SMALL(IF('Transaction History'!$C$3:$C$1000=$B$1,ROW('Transaction History'!D$3:D$1000)-ROW('Transaction History'!D$3)+1),ROWS('Transaction History'!D$3:'Transaction History'!D3))),"")
Any ideas?
Thanks in advance!