FORMULAS

Copper Contributor

I HAVE TO SPLIT G6 INTO D6 AND E6 I.E -600 AND -150 RESPECTIVELY , PLEASE HELP ME.
FILE ATTACHED

4 Replies

Hello @aayushman_mishra,

 

How is it determined that -600 goes into cell D6 and -150 goes into cell E6?

@aayushman_mishra 

If logic is as here https://techcommunity.microsoft.com/t5/Excel/formula-for-data-calculation/m-p/804693, when in D6

=IF( (B6-C6=-600) + (B6-C6=-750),-600,"")

in E6

=IF(AND(B6-C6>=-200,B6-C6<=-1),B6-C6,IF(B6-C6=-750,-150,""))

and in G6

=B6-C6-SUM(D6:F6)

@PReagan hI, as per condition the discount amt not taken is -600 and the fine lies between -1 to -200 and re adm fee is -500. thats why we have to fix this formula. 

@Sergei Baklan 
Hello sir, as you told i applied the condition in E6
BUT AS I M EXTENDING THE FORMULA FOR MULTIPLE VALUES ITS SHOWING VALUE ERROR , PLEASE HELP ME REGARDING THIS, EXTENDED FORMULA IS MARKED GREEN.
I HAVE MULTIPLE 4 CONDITIONS THATS WHY I M EXTENDING THE FORMULA

=IF(AND(B5-C5>=-200,B5-C5<=-1),B5-C5,IF(B5-C5=-750,-150,"")+IF(B5-C5=-650,-50,""))