How to disable Save Data in EPM if the EPMMemberProperty is not equal to LOB

jackyysteez

New Member
Joined
Jul 17, 2018
Messages
8
So I'm new to VBA but I was given the task to make it so if somebody puts the wrong cost center into cell C27 and it does not fall into the right LOB category, a message box pops up and tells you you may not save due to cost center entry. The code should also cancel the save action unless a correct Cost Center is provided. So far my code is...

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)


Public Property Get CostCenter() As String
Set CostCenter = Range("C27")
strCostCenter = obj.CostCenter
variable = Object.Property

CostCenter.Select.GetPropertyList
If CostCenter <> LOB_400 Then
MsgBox "Wrong Cost Center provided!", vbCancel
Cancel = True
Else: Cancel = False
End If

End Property

End Sub

However I am having immense trouble with it as every time i try and run it a Pop Up occurs asking me to name the Macro.. Let me know what you guys think, Thank you!!
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
I'm not sure what type of Data Validation would be necessary, I'm fooling around with it now trying to get a feel for it, but what would i do when it comes to using the Data Validation instead of VBA
 
Upvote 0
I was thinking you could have a list of valid cost centres, create a named range for them and then use Data Validation to check that the entry is in the list.
 
Upvote 0
Why are you using Public Property Get?

Is there a class involved somewhere?

Also, what are obj and Object referring to here?
Code:
strCostCenter = obj.CostCenter
variable = Object.Property
 
Upvote 0
Why are you using Private Property Get?

If you wanted to check the value in a cell I don't see why you would need that, but then again I might be missing something.

Also, if you want to prevent a file being saved then you should probably be looking at using something like the workbook BeforeSave event.
Code:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)

End Sub
 
Upvote 0
I was looking for the name of the Cell not the value. However even when I use

Code:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)    If Range("C27").Name <> LOB_400 Then
        Cancel = True
    Else
        Cancel = False
End Sub

I get the macro naming pop up occurring
 
Upvote 0
To get the value of a cell you would use, well, the .Value property.
Code:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)    

    If Range("C27").Value <> "LOB_400" Then
        MsgBox "Incorrect cost centre, save cancelled!"
        Cancel = True
    Else
        Cancel = False
    End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,215,586
Messages
6,125,683
Members
449,249
Latest member
ExcelMA

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