Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to have Excel give me a warning message on worksheet 2
("Monday"), if any cell (19-76) in column AH, on worksheet 1 ("Roster") exceeds 2. I thought that this would work, but it doesn't: =IF(Roster!AH$19:AH $762,"You are trying to schedule a part-time cashier more than twice as a cashier!",""). All I get is a "#Value!" error. I know that this can't be a very hard thing to do with Excel, but then I am a complete rookie, so any help would be greatly appreciated. --Ray |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Maybe this:
=IF(COUNTIF(Roster!AH$19:AH$76,"2"),"You are trying to schedule a part-time cashier more than twice as a cashier!",""). -- Biff Microsoft Excel MVP "Ray" wrote in message ps.com... I need to have Excel give me a warning message on worksheet 2 ("Monday"), if any cell (19-76) in column AH, on worksheet 1 ("Roster") exceeds 2. I thought that this would work, but it doesn't: =IF(Roster!AH$19:AH $762,"You are trying to schedule a part-time cashier more than twice as a cashier!",""). All I get is a "#Value!" error. I know that this can't be a very hard thing to do with Excel, but then I am a complete rookie, so any help would be greatly appreciated. --Ray |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try:
=IF(COUNTIF(Roster!AH$19:AH$76, "2"), "Yor are trying...", "") Greg |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
trigger data validation warning | Excel Discussion (Misc queries) | |||
Change cell color if date exceeds formula | Excel Discussion (Misc queries) | |||
add text in a cell to trigger a calculation | Excel Worksheet Functions | |||
How to make a cell trigger a Sound in Excel | Excel Worksheet Functions | |||
if the cell value exceeds the limit to have a dialog box appear | Excel Discussion (Misc queries) |