visionary

New Member
Joined
Jan 17, 2018
Messages
1
Thank you for your time first and for most.
I have Sheet 1&2. I want cell A1 in Sheet 2 referencing cell A1 in Sheet 1, whatever appeared in Sheet 1 cell A1 needs to be in cell A1 Sheet 2. This part is done. the next part is when cell A1 Sheet 1 has nothing, right now I want cell A1 in Sheet 2 to display nothing instead of "0". I put in =ISBLANK(Sheet1!A1) and "TRUE" displays in Sheet 2 A1. I need A1 in Sheet 2 just display nothing until I input a value in A1 Sheet 1. How can you help me to resolve this? Thanks.
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
=if(isblank(Sheet1!A1),"",Sheet1!A1)

Keep in mind that a cell must be empty to test true with isblank, Go To, etc. "" is still a string.
 
Last edited:
Upvote 0
or, .. one fewer function calls:

=if(Sheet1!A1="","",Sheet1!A1)
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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