Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have two workbooks, one is my data and the other is report from random
areas of my data. I am using the following formula to pull information: =IF(ISBLANK('[Data.xlsx]Sheet!$F318),"",'[Data.xlsx]Sheet'!$F318) The column is stationary, but sometimes there are a few rows that I can fill with data. I need the blank cell if there is nothing in my data file, and the data I am using is Text, Dates, and numbers so traditional conditional formatting was not sorting out blanks. An example would be: =IF(ISBLANK('[Data.xlsx]Sheet!$F318),"",'[Data.xlsx]Sheet'!$F318) =IF(ISBLANK('[Data.xlsx]Sheet!$F319),"",'[Data.xlsx]Sheet'!$F319) =IF(ISBLANK('[Data.xlsx]Sheet!$F341),"",'[Data.xlsx]Sheet'!$F341) =IF(ISBLANK('[Data.xlsx]Sheet!$F348),"",'[Data.xlsx]Sheet'!$F348) €¦ and so on. Some cells already have existing links others are blank. Is there a more efficient way of ether adding the formula to existing cells? OR Changing reference cell other than going in to formula and changing number? (i.e. the = + Click on data cell used to create reference) |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I suppose you could use INDIRECT and just have a place to enter your list of
cell references. So, say in Sheet2, A1:A500, you'd enter the cell numbers you want to reference as 318 319 341 348 etc. then, in Sheet1, you have =IF(ISBLANK(INDIRECT("'[Data.xlsx]Sheet!$F"&Sheet2!A1)),"",INDIRECT("'[Data.xlsx]Sheet!$F"&Sheet2!A1)) and paste down. May want to add another If so you can have this formula all down your report row, so: =IF(Sheet2!A1="","",IF(ISBLANK(INDIRECT("'[Data.xlsx]Sheet!$F"&Sheet2!A1)),"",INDIRECT("'[Data.xlsx]Sheet!$F"&Sheet2!A1))) "PhilosophersSage" wrote: I have two workbooks, one is my data and the other is report from random areas of my data. I am using the following formula to pull information: =IF(ISBLANK('[Data.xlsx]Sheet!$F318),"",'[Data.xlsx]Sheet'!$F318) The column is stationary, but sometimes there are a few rows that I can fill with data. I need the blank cell if there is nothing in my data file, and the data I am using is Text, Dates, and numbers so traditional conditional formatting was not sorting out blanks. An example would be: =IF(ISBLANK('[Data.xlsx]Sheet!$F318),"",'[Data.xlsx]Sheet'!$F318) =IF(ISBLANK('[Data.xlsx]Sheet!$F319),"",'[Data.xlsx]Sheet'!$F319) =IF(ISBLANK('[Data.xlsx]Sheet!$F341),"",'[Data.xlsx]Sheet'!$F341) =IF(ISBLANK('[Data.xlsx]Sheet!$F348),"",'[Data.xlsx]Sheet'!$F348) €¦ and so on. Some cells already have existing links others are blank. Is there a more efficient way of ether adding the formula to existing cells? OR Changing reference cell other than going in to formula and changing number? (i.e. the = + Click on data cell used to create reference) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formatting a Cell Reference with a Formula | Excel Worksheet Functions | |||
Formatting the value of a cell reference in a formula | Excel Worksheet Functions | |||
Using an offset formula for the reference in a relative reference | Excel Worksheet Functions | |||
cell reference changes and conditional formatting | Excel Worksheet Functions | |||
Conditional Formatting, reference another column | Excel Worksheet Functions |