Macro / custom validation help needed

harvy28

New Member
Joined
Mar 4, 2009
Messages
4
I have a problem with excel. I'll describe the problem in a shortened way here.

I have 4 cells that contain a percentage. I want the sum of the four cells not to exceed 100%. I want an error message through validation to appear if the sum excedds 100% OR it could be a macro message box.

Many thanks in advance.
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
you can in the next cell put and if statment

Code:
=if("A1">100, sum excedds 100%,"" )
or you can use the
Code:
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
Sheets("your sheet name").Select
 If Range("A1") = 0 Then
Call MsgExample1
Else
Exit Sub
End If
End Sub
 
[CODE]Sub MsgExample1()
 MsgBox "sum excedds 100%."
End Sub
[/CODE]
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,755
Members
448,989
Latest member
mariah3

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