Need code to paste formula in blank cells in range only

rsharma017

New Member
Joined
Aug 7, 2017
Messages
7
Sub Populate_TotalDeposit_BankDate()
Dim m_XlCashPostWrkSheet As Worksheet
Set m_XlCashPostWrkSheet = ActiveSheet

Dim mCashPostRowCount As Integer
mCashPostRowCount = m_XlCashPostWrkSheet.UsedRange.Rows.Count

Dim m_XlMatchedDataWrkSheet As Worksheet
Set m_XlMatchedDataWrkSheet = Worksheets("Matched Data")

Dim mMatchedDataRowCount As Integer
mMatchedDataRowCount = m_XlMatchedDataWrkSheet.UsedRange.Rows.Count

m_XlCashPostWrkSheet.Range("U2:U" & mCashPostRowCount).Formula = "=IF(ISERROR(VLOOKUP(A2,'Matched Data'!$B$2:$Y$" & mMatchedDataRowCount & ",22,FALSE)),"""",VLOOKUP(A2,'Matched Data'!$B$2:$Y$" & mMatchedDataRowCount & ",22,FALSE))"
m_XlCashPostWrkSheet.Range("V2:V" & mCashPostRowCount).Formula = "=IF(ISERROR(VLOOKUP(A2,'Matched Data'!$B$2:$Y$" & mMatchedDataRowCount & ",23,FALSE)),"""",VLOOKUP(A2,'Matched Data'!$B$2:$Y$" & mMatchedDataRowCount & ",23,FALSE))"

End Sub
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Hi,

Try adding SpecialCells(xlCellTypeBlanks) into your code, e.g.:

Code:
    m_XlCashPostWrkSheet.Range("U2:U" & mCashPostRowCount).[B]SpecialCells(xlCellTypeBlanks).Formula[/B] = "=IF(ISERROR(VLOOKUP(A2,'Matched Data'!$B$2:$Y$" & mMatchedDataRowCount & ",22,FALSE)),"""",VLOOKUP(A2,'Matched Data'!$B$2:$Y$" & mMatchedDataRowCount & ",22,FALSE))"
 
Upvote 0

Forum statistics

Threads
1,223,894
Messages
6,175,252
Members
452,623
Latest member
Techenthusiast

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