Formula/Macro

praf007

New Member
Joined
Jul 25, 2024
Messages
3
Office Version
  1. 365
Platform
  1. Windows
We download reports from a software into Excel. All Values are debits (+ve) in Col P (Could be any column depending on report). Col Q has Debit and Credit. Normally I insert a Col and create a formula -=if(Q2="Debit",P2,-P2)
How can I create a macro which does this automatically. Number of rows can vary along with which Columns have values and Debits/Credits
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
paste code into a module , then run to insert formulas

Code:
Sub buildFormula()
Dim iRows As Long

Range("A1").Select
iRows = ActiveSheet.UsedRange.Rows.Count
    
'add col.
    Columns("R:R").Select
    Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
   
    
Range("R1").Value = "formula"
Range("R2").Select
While ActiveCell.Row <= iRows
    ActiveCell.FormulaR1C1 = "=IF(RC[-1]=""Debit"",RC[-2],-RC[-2])"
    ActiveCell.Offset(1, 0).Select
Wend
MsgBox "done"
End Sub
 
Upvote 0
Try
VBA Code:
Sub GetValue()
Dim LR&
LR = Range("Q" & Rows.Count).End(xlUp).Row
Range("R2:R" & LR).Insert shift:=xlToRight
Range("R2:R" & LR).Formula = "=If(Q2=""Debit"",-1*P2,P2)"
End Sub
 
Upvote 0
paste code into a module , then run to insert formulas

Code:
Sub buildFormula()
Dim iRows As Long

Range("A1").Select
iRows = ActiveSheet.UsedRange.Rows.Count
   
'add col.
    Columns("R:R").Select
    Selection.Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
  
   
Range("R1").Value = "formula"
Range("R2").Select
While ActiveCell.Row <= iRows
    ActiveCell.FormulaR1C1 = "=IF(RC[-1]=""Debit"",RC[-2],-RC[-2])"
    ActiveCell.Offset(1, 0).Select
Wend
MsgBox "done"
End Sub
Thanks Ranman. Tried it a few times on different report and it works. Just need to be aware that i need to change Add Columns From R to what ever column.
 
Upvote 0
Will try this as well. thank you
The second code should perform much better for 2 reasons:

1. It does not use loops. Loops are notoriously slow and should be avoided whenever possible. When there are other better options available, you should choose them instead of loops.

2. It does not use "Select" statements. "Select" statement slow down your code and can cause screen flickering. Most of the time, it is not necessary to select your ranges in order to work with them. If you use the Macro Recorder, it records every cell selection literally, so there is often an opportunity to clean up VBA code that is recorded, and make it shorter and run smoother.
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

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