Formula help please

Copper Contributor

Hi,

I have the following data and currently using, =exact to check columns E & F match, but column f is a sum of J,K & L, I would like a formula that can do all this without having the additional column F adding everything in J,K & L, and also can an IFERORR be used for blank columns, so that when data is inputted in the columns that in the "Matched" column it populates the TRUE/FALSE?

 
KellieMeehan_1-1642588910478.png

 

 

6 Replies

@KellieMeehan 

Could you please bit more details what are other formulas for calculations?

@KellieMeehan 

You dont need the Exact() formula. But as you posted this formula you can do something like here

=IFERROR(EXACT(E2,SUM(J2:L2)),"Something")

 

@Juliano-Petrukio 

 

KellieMeehan_0-1642589925053.png

I have added the sum to column E, I would really like to get rid of this and for a formula to look at I2,J2,K2 if matched with D2, for this to say MATCHED in Column F and if it doesn't then UNMATCHED. is this possible? and then instead of having to pull the formula down in ColumnF for eadh row, that like an IFERORR formula that say F6 below stays blank until data is entered, is this possible?

I would like the formula to check that the data in I2,J2,K2 matches D2, and if it doesn't match that in F2 it shows either MATCHED or UNMATCHED, and then in that formula if possible an iferror is no data is in columns I2,J2,K2, hope this makes sense

@KellieMeehan 

Perhaps

=IF( SUM(I2:K2) = 0, "no data", IF( SUM(I2:K2) = D2, "MATCHED", UNMATCHED" ) )

@KellieMeehan 

I try to answer your question

Option1

=IF(AND(ISBLANK(I2),ISBLANK(J2),ISBLANK(K2)),"",IF(OR(ISBLANK(I2),ISBLANK(J2),ISBLANK(K2)),"HASBLANK",IF(D2=SUM(I2:K2),"MATCHED","UNMATCHED")))

Option2

=IF(AND(ISBLANK(I2),ISBLANK(J2),ISBLANK(K2)),"",IF(D2=SUM(I2:K2),"MATCHED","UNMATCHED"))