"did not work" means what?
Following Rick's instructions I was able to produce a restriction in C and F if
either column had a value.
If you want to restrict just column F leave out the first step where you select
column C
You may also want to set up an input message and/or an error message that
describes the restriction.
Gord Dibben MS Excel MVP
On Thu, 9 Aug 2007 03:16:01 -0700, Scott_goddard
wrote:
Hi Rick. Nice idea but it did nto work. Any idea's?
"Rick Rothstein (MVP - VB)" wrote:
Right i have two colums of data C and F. All i want to do is limit data
to
only one of the colums. For example if someone types £3.00 in C19, then F
19
would be blocked.
Select all of Column C... click Data/Data Validation from Excel's menu...
select Custom from the Allow drop-down and put this...
=LEN(F1)=0
in the Formula field and leave Ignore Blank checked.
Next, select all of Column F... click Data/Data Validation from Excel's
menu... select Custom from the Allow drop-down and put this...
=LEN(C1)=0
in the Formula field and leave Ignore Blank checked.
For a given row, either C or F, but not both, can have an entry.
Rick