If cell is blank in specific range the on the same cell in another sheet should come yes

Sunil7598

New Member
Joined
Dec 28, 2022
Messages
20
Office Version
  1. 2016
Platform
  1. Windows
Hi Guys,

I have to sheets. one with data and other one is has only headings.

for example if in Sheet1 any cell is blank in given range then in sheet2 on the same cell address it should enter no. Vise versa.

I tried few codes but unable to read cell address and change value in next sheet.

Kindly help me

Thank you
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Hi,
You could test
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
 Sheet2.Cells(Target.Row, Target.Column).Value = "Yes"
End Sub
 
Upvote 0
Solution
Kitap3.xlsx.xlsm
A
651
66a
672
68b
69
70d
71e
02.02.23


Kitap3.xlsx.xlsm
A
651
66a
672
68b
69NO
70d
71e
03.02.23
Cell Formulas
RangeFormula
A65:A71A65=IF('02.02.23'!A65="","NO",'02.02.23'!A65)
 
Upvote 0

Forum statistics

Threads
1,215,360
Messages
6,124,492
Members
449,166
Latest member
hokjock

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