Reputation:
As i'm trying to use IF condition to update on some column not single row but multiple.
Here is a screen shot for it
sheet. Now as i want a formula something like this way that =(IF{C2:C}={D2:D},TRUE,FALSE)
for all I column of SELL and =(IF{C2:C}={E2:E},TRUE,FALSE)
for all H column of BUY.
As the sheet is updated from share market every time so it needs to update every time for true and false against BUY and SELL.
Any hint would be helpful for the total summation check using IF condition.
Upvotes: 0
Views: 192
Reputation: 348
Try this
=ARRAYFORMULA(IF(ISBLANK(C2:C),"",C2:C=D2:D))
which ever is same number it gives TRUE
else FALSE
same goes for another column =ARRAYFORMULA(IF(ISBLANK(C2:C),"",C2:C=E2:E))
OR
=ARRAYFORMULA(IF(C2:C="","",C2:C=D2:D))
for sell & =ARRAYFORMULA(IF(C2:C="","",C2:C=E2:E))
for buy
Both works the same way
Upvotes: 1