Ifblank

olimajor123

Board Regular
Joined
Nov 13, 2013
Messages
72
Hi,

I have a simple spreadsheet where I am copying over data from another sheet called 'Master Tracker' in the workbook, so each cell is just a basic ='Master Tracker'!A5 etc. However where some of the cells are blank, I want the cells on my other sheet to also appear blank instead of a zero value (dates for example appear as 00/01/1900). How can I work this into the formula?

Also, one of the columns doesn't let me do the link as that particular column uses a drop down menu from the other sheet, is there any way to get around this?

Thanks in advance
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
each cell is just a basic ='Master Tracker'!A5 etc. However where some of the cells are blank, I want the cells on my other sheet to also appear blank instead of a zero value

=IF('Master Tracker'!A5="","",'Master Tracker'!A5)

Caveat: Some dependent formulas might need to change. For example, if that formula were in A5 and A6, the formula =A5+A6 would return a #VALUE error if 'Master Tracker'!A5 and/or 'Master Tracker'!A6 were blank.

There are many good fixes. The simplest: =IFERROR(A5+A6,0).

Alternatively, continue to use ='Master Tracker'!A5, and choose a format that displays blank instead of zero. Downside: that will display blank even if 'Master Tracker'!A5 is zero, not blank.

Also, one of the columns doesn't let me do the link as that particular column uses a drop down menu from the other sheet, is there any way to get around this?

Difficult to understand and answer without details. Perhaps the formatting trick above would solve the problem.
 
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,540
Members
449,038
Latest member
Guest1337

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