Validation rule

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I am trying to populate data from WS1 to WS2 with some validation rules. In
this scenario I want to put in a validation rule where, if A1 in worksheet 1
is not blank (have a character) then a default value 'x' should be populated
in A1 of ws2. ANy help would be highly appreciated. Thanks.
 
Hi
You could use a formula in A1 of Sheet2:
=IF(Sheet1!A1<>"","x")

Andy.
 
Hi Nick

In Ws2 A1

=IF(WS1!A1<>"",value,"")

this will put in a value you define if not blank otherwise it will be
blank

Ed
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top