ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Combining Formulas (https://www.excelbanter.com/excel-programming/372865-combining-formulas.html)

Phil H[_2_]

Combining Formulas
 
These three formulas need to be combined into a single formula:

1.) =IF(D7E7,D7*H7) D7 greater than E7
Or (could these two be combined?)
2.) =IF(D7=E7,D7*H7) D7 equal to E7
Or
3.) =IF(D7<E7,((D7-E7)+(D7*H7))) D7 less than E7

Then the single formula will be used (copied) into the 90 rows below row 7.

Would this be better done with VBA in a module?


NickHK

Combining Formulas
 
Phil,
=IF(D7=E7,D7*H7,(D7-E7)+(D7*H7))

NickHK

"Phil H" wrote in message
...
These three formulas need to be combined into a single formula:

1.) =IF(D7E7,D7*H7) D7 greater than E7
Or (could these two be combined?)
2.) =IF(D7=E7,D7*H7) D7 equal to E7
Or
3.) =IF(D7<E7,((D7-E7)+(D7*H7))) D7 less than E7

Then the single formula will be used (copied) into the 90 rows below row

7.

Would this be better done with VBA in a module?




[email protected]

Combining Formulas
 

Phil H wrote:
These three formulas need to be combined into a single formula:

1.) =IF(D7E7,D7*H7) D7 greater than E7
Or (could these two be combined?)
2.) =IF(D7=E7,D7*H7) D7 equal to E7
Or
3.) =IF(D7<E7,((D7-E7)+(D7*H7))) D7 less than E7

Then the single formula will be used (copied) into the 90 rows below row 7.

Would this be better done with VBA in a module?


VBA is not necessary, I think:
=D7*H7+MIN(D7-E7,0)



All times are GMT +1. The time now is 06:38 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com