Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
DATA VALIDATION:
col heading = RENHB valid value = "R,E,N,H,B" Data/Validation/Custom/Formula = ( function dvRENHB ) (that's what I want, anyway) (simple version) Function dvRENHB() dvRENHB = 0 Dim cVAL cVAL = ActiveCell.Value cVAL = UCase(cVAL) If InStr(1, "RENHB", cVAL, 1) Then ActiveCell.Value = cVAL dvRENHB = 1 End If End Function Cannot use custom funtion for data validation, so... I set Data/Validation/Custom/Formula = "=A1" (and "=$A$1") I set A1 = "=dvRENHB()"; doesn't work I set A1 = "dvRENHB()"; doesn't work I set A1 = (...many more...) How can I get this to work? Thanks |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
custom data validation on cells with data validation values | Excel Worksheet Functions | |||
Validation Data using Validation Table cell range..... | Excel Discussion (Misc queries) | |||
data validation invalid in dynamic validation list | Excel Discussion (Misc queries) | |||
data validation invalid in dynamic validation list | Excel Worksheet Functions | |||
Data validation with validation lists and combo boxs | Excel Discussion (Misc queries) |