Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm setting up a second worksheet where in column A, I just want the
appropriate information in column A on the previous worksheet to populate. (Information that is being entered will be names of individuals.) I am currently using the following formula: ='Performance Analysis'!A5 However, I would like to add that if the cell is blank, no information is entered on the 2nd worksheet. How do I add that additional stipulation? Any information is appreciated. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=if('Performance Analysis'!A5,"",'Performance Analysis'!A5)
lisab wrote: I'm setting up a second worksheet where in column A, I just want the appropriate information in column A on the previous worksheet to populate. (Information that is being entered will be names of individuals.) I am currently using the following formula: ='Performance Analysis'!A5 However, I would like to add that if the cell is blank, no information is entered on the 2nd worksheet. How do I add that additional stipulation? Any information is appreciated. -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Are you sure you meant that, Dave?
I wonder whether instead of =if('Performance Analysis'!A5,"",'Performance Analysis'!A5) you might have intended =if('Performance Analysis'!A5="","",'Performance Analysis'!A5) ? -- David Biddulph Dave Peterson wrote: =if('Performance Analysis'!A5,"",'Performance Analysis'!A5) lisab wrote: I'm setting up a second worksheet where in column A, I just want the appropriate information in column A on the previous worksheet to populate. (Information that is being entered will be names of individuals.) I am currently using the following formula: ='Performance Analysis'!A5 However, I would like to add that if the cell is blank, no information is entered on the 2nd worksheet. How do I add that additional stipulation? Any information is appreciated. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks for the correction.
David Biddulph wrote: Are you sure you meant that, Dave? I wonder whether instead of =if('Performance Analysis'!A5,"",'Performance Analysis'!A5) you might have intended =if('Performance Analysis'!A5="","",'Performance Analysis'!A5) ? -- David Biddulph Dave Peterson wrote: =if('Performance Analysis'!A5,"",'Performance Analysis'!A5) lisab wrote: I'm setting up a second worksheet where in column A, I just want the appropriate information in column A on the previous worksheet to populate. (Information that is being entered will be names of individuals.) I am currently using the following formula: ='Performance Analysis'!A5 However, I would like to add that if the cell is blank, no information is entered on the 2nd worksheet. How do I add that additional stipulation? Any information is appreciated. -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
try this:
=if(isblank('Performance Analysis'!A5)=TRUE,"",'Performance Analysis'!A5) -- hope to help, cm "lisab" wrote: I'm setting up a second worksheet where in column A, I just want the appropriate information in column A on the previous worksheet to populate. (Information that is being entered will be names of individuals.) I am currently using the following formula: ='Performance Analysis'!A5 However, I would like to add that if the cell is blank, no information is entered on the 2nd worksheet. How do I add that additional stipulation? Any information is appreciated. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Info only
You don't need the =TRUE =if(isblank('Performance Analysis'!A5),"",'Performance Analysis'!A5) Gord Dibben MS Excel MVP On Wed, 28 Oct 2009 11:23:01 -0700, cm wrote: try this: =if(isblank('Performance Analysis'!A5)=TRUE,"",'Performance Analysis'!A5) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need correct IF(ISBLANK) formula when referencing whether one of twocells (OR) is blank, returning "no value" | Excel Worksheet Functions | |||
How to find non-blank cell values "hidden" under merged regions? | Excel Discussion (Misc queries) | |||
"If" statement returning blank gives downstream formula errors. | Excel Discussion (Misc queries) | |||
Leave cell data (IF(ISNA(VLOOKUP) is TRUE instead of returning blank (" ") or #NA | Excel Worksheet Functions | |||
Changing "returned" values from "0" to "blank" | Excel Worksheet Functions |