ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Add formula in the code (https://www.excelbanter.com/excel-programming/323698-add-formula-code.html)

Annette[_5_]

Add formula in the code
 
How would I add this formula into the code on Sheet2?

=SUMIF(Sheet1!B:B,"warrant",Sheet1!C:C)




Tom Ogilvy

Add formula in the code
 
What does that mean - add it into the code on sheet2?

If you wanted to use code to enter that formula in a cell you would do:

Worksheets("Sheet2").Range("F6").Formula = _
"=SUMIF(Sheet1!B:B,""warrant"",Sheet1!C:C)"

--
Regards,
Tom Ogilvy


"Annette" wrote in message
...
How would I add this formula into the code on Sheet2?

=SUMIF(Sheet1!B:B,"warrant",Sheet1!C:C)






Annette[_5_]

Add formula in the code
 
Very intuitive and just what I needed ... this makes sense and also helps me
for the other formulas! Thanks!
"Tom Ogilvy" wrote in message
...
What does that mean - add it into the code on sheet2?

If you wanted to use code to enter that formula in a cell you would do:

Worksheets("Sheet2").Range("F6").Formula = _
"=SUMIF(Sheet1!B:B,""warrant"",Sheet1!C:C)"

--
Regards,
Tom Ogilvy


"Annette" wrote in message
...
How would I add this formula into the code on Sheet2?

=SUMIF(Sheet1!B:B,"warrant",Sheet1!C:C)








Patrick Molloy

Add formula in the code
 
TIP
To enter formula down a column:
With Range("D7:D27")
.FormulaR1C1 = "=somefunction(RC1)"
End With


"Annette" wrote in message
...
Very intuitive and just what I needed ... this makes sense and also helps
me
for the other formulas! Thanks!
"Tom Ogilvy" wrote in message
...
What does that mean - add it into the code on sheet2?

If you wanted to use code to enter that formula in a cell you would do:

Worksheets("Sheet2").Range("F6").Formula = _
"=SUMIF(Sheet1!B:B,""warrant"",Sheet1!C:C)"

--
Regards,
Tom Ogilvy


"Annette" wrote in message
...
How would I add this formula into the code on Sheet2?

=SUMIF(Sheet1!B:B,"warrant",Sheet1!C:C)











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

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