Hello everyone,
this is my first post as a forum member, but I've been using the forum for a while and you've already solved a couple of issues for me. So first of all I wanted to THANK EVERYONE for what you've already done for me!
--- SITUATION:
1.) Data in Sheet1 is linked to Sheet2.
--- PROBLEM:
2.) In Sheet1 where cells are blank, they appear as 0s.
--- WHAT I'M LOOKING FOR:
3) Cells that appear as 0's need to be blank/empty (not only "look" blank, so no conditional formatting changing colors!) AND the links need to be preserved.
--- WHAT I'VE TRIED SO FAR
I've tried this, which turns zero-valued cells into blank cells BUT BREAKS the links.
For Each cell In ActiveSheet.UsedRange
If Not IsEmpty(cell) Then
If cell.Value = 0 Then
cell.Value = ""
End If
End If
Next
That doesn't work for me cause the links need to be preserved. Any suggestions????
Thank you so much for your help!!! Talk soon.
Bookmarks