Checking formula result before inserting the formula in Cell in VBA?

mehidy1437

Active Member
Joined
Nov 15, 2019
Messages
348
Office Version
  1. 365
  2. 2016
  3. 2013
Platform
  1. Windows
  2. Mobile
  3. Web
Hi Everyone,

I want to check the result of the formula before inserting it into the cell.
If the formula generates a 0, then I don't want to insert the formula into the cell.
How can I do this?

Here is the part of the code, where I want to do this.

VBA Code:
    Dim c As Range
    For Each c In Rng
        If c.MergeCells Then
            calSum = c.MergeArea.Offset(, -1).Resize(c.MergeArea.Rows.Count).Address(0, 0)
            c.Formula = "=SUM(" & calSum & ")"
        End If
    Next
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
I think...

VBA Code:
            If Evaluate("=SUM(" & calSum & ")") <> 0 Then
                c.Formula = "=SUM(" & calSum & ")"
            End If
 
Upvote 0
I will check & revert with the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,391
Members
448,957
Latest member
Hat4Life

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