Custom data validation formula

mdileep

Board Regular
Joined
Dec 8, 2019
Messages
54
Office Version
  1. 2007
Platform
  1. Windows
  2. Mobile
Is it possible to paste same text of reference cell by custom data validation.
For example :
If cell C8 contain text as BD, it's paste same in cell D8, If cell C8 contain any number, cell D8 will blank for insert desire value.
Thanks.
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Is it possible to paste same text of reference cell by custom data validation.
For example :
If cell C8 contain text as BD, it's paste same in cell D8, If cell C8 contain any number, cell D8 will blank for insert desire value.
Thanks.
like this?

1615446087950.png

you can use this to reflect the same cell referenced
=IF(ISTEXT(C8),C8,"")
 
Upvote 0
like this?

View attachment 34088
you can use this to reflect the same cell referenced
=IF(ISTEXT(C8),C8,"")
Thanks but...
I want to use this formula with custom data validation, not in formula bar,
With this formula use in custom data validation, if I put text John Doe in cell b3, it's automatically not paste in c3.
 
Upvote 0
Is it possible to paste same text of reference cell by custom data validation.
For example :
If cell C8 contain text as BD, it's paste same in cell D8, If cell C8 contain any number, cell D8 will blank for insert desire value.
Thanks.
=ISTEXT(FIND(“BD”,C8))
Something like this?
 
Upvote 0

Forum statistics

Threads
1,215,731
Messages
6,126,539
Members
449,316
Latest member
sravya

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