Linking Data on Different Tab and Showing Blank Values Instead of Zeroes

lossi44

New Member
Joined
Apr 21, 2009
Messages
19
In the file: Index_Log, I have a list for contract drawings generated on Tab-1 that I will be doing monthly updates on.
Background:
For every monthly update, I'll create a new tab to track updates and for this purpose I'll number the tabs sequentially such as Tab-2, Tab-3 etc...
I want to link values from the source Tab-1 beginning with Cell E3 to Tab-2 for example and instead of having a cell return a value of zero '0' on the new tab, I want it left blank.
When I link values from Tab-1 to Tab-2, the blank entries from Tab-1 result in a 'zero' (0) on Tab-2 and I want the new tab to also display an empty/blank cell.
I need blank cells because the most recent value updates are shown in col. D whose default value should = 'As-Bid' for blank cells, thus having a '0' in col. D is incorrect.
Attempted Formula on Tab-2:
=IF('TAB-1'!I3=" "," ",'TAB-1'!I3)
Snippet below from Tab-2
I found this formula from a similar topic on this forum, but I am obviously entering it wrong as Cell I3 results in zero (0) instead of being blank.
Thank you in advance for reading and taking the time to help.
Index_LogR2.PNG
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
You need to remove the space from between the quotes.
Excel Formula:
=IF('TAB-1'!I3="","",'TAB-1'!I3)
 
Upvote 1
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,420
Messages
6,124,800
Members
449,189
Latest member
kristinh

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