Simple VB for Excel Question

D

Don

I want to create a macro that will check a cell (E5) which is a formula
=IF(ABS(SUM(J70:BD70))>1,"Not Balanced","Balanced")
and if it has "Balanced" , then I want to put "Processed" in cell G6 and put
a time stamp in cell F6, if "Not Balanced" , then zero out cell G6 and F6?

Here is what I have so far that is trying to just display a text box , so be
kind

Sub ProB()
Dim GetDealNStat As String
Cells(5, 5).Select
GetDealNStat = Selection.Value
If GetDelNStat = "Balanced" Then
MsgBox "RECON Balanced", GetDealNStat, vbExclamation
Else
MsgBox "Deal is not Balanced, Please balance deal",
GetDealNStat, vbExclamation
End If
End Sub
 
M

Mike H

Maybe

Sub ProB()
Dim GetDealNStat As String
GetDealNStat = Cells(5, 5).Value
If Cells(5, 5).Value = "Balanced" Then

MsgBox "RECON Balanced " & GetDealNStat, vbExclamation
Else
MsgBox "Deal is not Balanced, Please balance deal " &
GetDealNStat, vbExclamation
End If
End Sub


Mike
 
D

Don

Mike, this got it , thanks for the help

Mike H said:
Maybe

Sub ProB()
Dim GetDealNStat As String
GetDealNStat = Cells(5, 5).Value
If Cells(5, 5).Value = "Balanced" Then

MsgBox "RECON Balanced " & GetDealNStat, vbExclamation
Else
MsgBox "Deal is not Balanced, Please balance deal " &
GetDealNStat, vbExclamation
End If
End Sub


Mike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top