VBA formula not writing when going onto a second line of code

theglitch

New Member
Joined
Jan 3, 2018
Messages
5
Hi Experts,

I have been working for hours on this and have had no luck in getting this to write to the Excel file. I have included the code below and what the formula should be looking like in the Excel file. Any help or thoughts would be greatly appreciated. Also, please let me know what else you need from me. The problem is that the formula will not fit on one single line in the VBA editor. I have tried the (" & _) in all different combos.

Code:
Cells(j, i).Formula = "=IF((SUMIFS(" & Cells(StartRow, "K").Address & ":" & Cells(j - 1, i).Address & "," & Cells(StartRow, "A").Address & ":" & Cells(j - 1, "A").Address & ",""D""," & Cells(StartRow, "J").Address & ":" & Cells(j - 1, "J").Address & ",""H"")-SUMIFS(" & Cells(StartRow, "K").Address & ":" & Cells(j - 1, i).Address & "," & Cells(StartRow, "A").Address & ":" & Cells(j - 1, "A").Address & ",""D""," & Cells(StartRow, "J").Address & ":" & Cells(j - 1, "J").Address & ",""S""))<0,SUMIFS(" & Cells(StartRow, "K").Address & ":" & Cells(j - 1, i).Address & "," & Cells(StartRow, "A").Address & ":" & Cells(j - 1, "A").Address & ",""D""," & Cells(StartRow, "J").Address & ":" & Cells(j - 1, "J").Address & ",""H"")-SUMIFS(" & Cells(StartRow, "K").Address & ":" & Cells(j - 1, i).Address & "," & Cells(StartRow, "A").Address & ":" & Cells(j - 1, "A").Address & ",""D""," & Cells(StartRow, "J").Address & ":" & Cells(j - 1, "J").Address & ",""S"")*-1)," _                                          & "(SUMIFS(" & Cells(StartRow, "K").Address & ":" & Cells(j - 1, i).Address & "," & Cells(StartRow, "A").Address & ":" & Cells(j - 1, "A").Address & ",""D""," & Cells(StartRow, "J").Address & ":" & Cells(j - 1, "J").Address & ",""H"")-SUMIFS(" & Cells(StartRow, "K").Address & ":" & Cells(j - 1, i).Address & "," & Cells(StartRow, "A").Address & ":" & Cells(j - 1, "A").Address & ",""D""," & Cells(StartRow, "J").Address & ":" & Cells(j - 1, "J").Address & ",""S"")))"

What the formula should show :=IF((SUMIFS(K13:K39,A13:A39,"D",J13:J39,"H")-SUMIFS(K13:K39,A13:A39,"D",J13:J39,"S"))<0,(SUMIFS(K13:K39,A13:A39,"D",J13:J39,"H")-SUMIFS(K13:K39,A13:A39,"D",J13:J39,"S")*-1),(SUMIFS(K13:K39,A13:A39,"D",J13:J39,"H")-SUMIFS(K13:K39,A13:A39,"D",J13:J39,"S")))
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
For long formulas like this, I create a 'template' with the variable parts of the formula represented as [name] and then have lines of code which replace each [name] with the computed cell addresses to create the final formula. Also, because VBA uses two double quote characters to represent one double quote character inside a string, it is easier and more readable to use the single quote character (apostrophe) instead of the double quote character, and have a line which replaces the former with the latter.

Code:
    Dim f As String
    
    f = "=IF((SUMIFS([KCELLS],[ACELLS],'D',[JCELLS],'H')-SUMIFS([KCELLS],[ACELLS],'D',[JCELLS],'S'))<0,(SUMIFS([KCELLS],[ACELLS],'D',[JCELLS],'H')-SUMIFS([KCELLS],[ACELLS],'D',[JCELLS],'S')*-1),(SUMIFS([KCELLS],[ACELLS],'D',[JCELLS],'H')-SUMIFS([KCELLS],[ACELLS],'D',[JCELLS],'S')))"
    f = Replace(f, "[KCELLS]", Cells(startRow, "K").Address & ":" & Cells(j - 1, i).Address)
    f = Replace(f, "[ACELLS]", Cells(startRow, "A").Address & ":" & Cells(j - 1, "A").Address)
    f = Replace(f, "[JCELLS]", Cells(startRow, "J").Address & ":" & Cells(j - 1, "J").Address)
    f = Replace(f, "'", Chr(34))  'change single quote to double quote
    f = Replace(f, "$", "")       'remove absolute addresses
    Cells(j, i).Formula = f
 
Last edited:
Upvote 0
Cross posted https://www.excelforum.com/excel-pr...ng-when-going-onto-a-second-line-of-code.html

While we do not prohibit Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules).
This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0
Solved at the cross-posted location. (Missing paren in the VBA version)
 
Upvote 0

Forum statistics

Threads
1,215,110
Messages
6,123,143
Members
449,098
Latest member
Doanvanhieu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top