Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 124
Default FORMULA DOES NOT WORK

I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise, insert
the contents of cell a2.

IT DOES NOT WORK!!!!

Maybe, the format of a1 is in error; but, anyway, a blank a1 does NOT yield
a blank in my cell, and vice-versa.

WHAT AM I DOING WRONG??

How is this fixed?

Thank you,

FLKulchar
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,588
Default FORMULA DOES NOT WORK

Maybe it's not blank?

Tim


"F. Lawrence Kulchar" wrote in
message ...
I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise, insert
the contents of cell a2.

IT DOES NOT WORK!!!!

Maybe, the format of a1 is in error; but, anyway, a blank a1 does NOT
yield
a blank in my cell, and vice-versa.

WHAT AM I DOING WRONG??

How is this fixed?

Thank you,

FLKulchar



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 182
Default FORMULA DOES NOT WORK

Hi,

No problem with your formula :
=If(a1="","",a2)

maybe your computer use semicolon not comma try use :
=If(a1="";"";a2)

That based on you regional setting I guess!

Or try to not write the formula in A1 ...

HTH,

Halim


--
Halim Nur Ikhwan


"F. Lawrence Kulchar" wrote:

I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise, insert
the contents of cell a2.

IT DOES NOT WORK!!!!

Maybe, the format of a1 is in error; but, anyway, a blank a1 does NOT yield
a blank in my cell, and vice-versa.

WHAT AM I DOING WRONG??

How is this fixed?

Thank you,

FLKulchar

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 38
Default FORMULA DOES NOT WORK

sure it doesn't have a space or something in it?

yours worked, this worked, too:
=IF(ISBLANK(A1),"",A2)

--


Gary


"F. Lawrence Kulchar" wrote in
message ...
I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise, insert
the contents of cell a2.

IT DOES NOT WORK!!!!

Maybe, the format of a1 is in error; but, anyway, a blank a1 does NOT
yield
a blank in my cell, and vice-versa.

WHAT AM I DOING WRONG??

How is this fixed?

Thank you,

FLKulchar


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 43
Default FORMULA DOES NOT WORK

What happens if you use =IF(ISEMPTY(A1)=TRUE,"",A2)



"F. Lawrence Kulchar" schreef
in bericht ...
I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise, insert
the contents of cell a2.

IT DOES NOT WORK!!!!

Maybe, the format of a1 is in error; but, anyway, a blank a1 does NOT
yield
a blank in my cell, and vice-versa.

WHAT AM I DOING WRONG??

How is this fixed?

Thank you,

FLKulchar





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 923
Default FORMULA DOES NOT WORK

Works for me but try....

=IF(ISBLANK(A1),"",A2)

--
Cheers
Nigel



"F. Lawrence Kulchar" wrote in
message ...
I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise, insert
the contents of cell a2.

IT DOES NOT WORK!!!!

Maybe, the format of a1 is in error; but, anyway, a blank a1 does NOT
yield
a blank in my cell, and vice-versa.

WHAT AM I DOING WRONG??

How is this fixed?

Thank you,

FLKulchar



  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 124
Default FORMULA DOES NOT WORK

EVEN IF I TYPE:

=if(a2=85,"A","F")..

it does NOT WORK..if i change a2 to and from 85, the value in my cell
remains fixed at either "A" or "F"...i.e.the formula is not working.

FLKulchar

"moon" wrote:

What happens if you use =IF(ISEMPTY(A1)=TRUE,"",A2)



"F. Lawrence Kulchar" schreef
in bericht ...
I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise, insert
the contents of cell a2.

IT DOES NOT WORK!!!!

Maybe, the format of a1 is in error; but, anyway, a blank a1 does NOT
yield
a blank in my cell, and vice-versa.

WHAT AM I DOING WRONG??

How is this fixed?

Thank you,

FLKulchar




  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 124
Default FORMULA DOES NOT WORK

EVEN IF I TYPE:

=if(a2=85,"A","F")..

it does NOT WORK..if i change a2 to and from 85, the value in my cell
remains fixed at either "A" or "F"...i.e.the formula is not working.

FLKulchar



"Tim Williams" wrote:

Maybe it's not blank?

Tim


"F. Lawrence Kulchar" wrote in
message ...
I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise, insert
the contents of cell a2.

IT DOES NOT WORK!!!!

Maybe, the format of a1 is in error; but, anyway, a blank a1 does NOT
yield
a blank in my cell, and vice-versa.

WHAT AM I DOING WRONG??

How is this fixed?

Thank you,

FLKulchar




  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 124
Default FORMULA DOES NOT WORK

EVEN IF I TYPE:

=if(a2=85,"A","F")..

it does NOT WORK..if i change a2 to and from 85, the value in my cell
remains fixed at either "A" or "F"...i.e.the formula is not working.

FLKulchar



"GKeramidas" wrote:

sure it doesn't have a space or something in it?

yours worked, this worked, too:
=IF(ISBLANK(A1),"",A2)

--


Gary


"F. Lawrence Kulchar" wrote in
message ...
I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise, insert
the contents of cell a2.

IT DOES NOT WORK!!!!

Maybe, the format of a1 is in error; but, anyway, a blank a1 does NOT
yield
a blank in my cell, and vice-versa.

WHAT AM I DOING WRONG??

How is this fixed?

Thank you,

FLKulchar



  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 124
Default FORMULA DOES NOT WORK

if i use formula audit...evaluate formula...the value, if false, does NOT
return the false value of the IF function.

"GKeramidas" wrote:

sure it doesn't have a space or something in it?

yours worked, this worked, too:
=IF(ISBLANK(A1),"",A2)

--


Gary


"F. Lawrence Kulchar" wrote in
message ...
I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise, insert
the contents of cell a2.

IT DOES NOT WORK!!!!

Maybe, the format of a1 is in error; but, anyway, a blank a1 does NOT
yield
a blank in my cell, and vice-versa.

WHAT AM I DOING WRONG??

How is this fixed?

Thank you,

FLKulchar





  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 124
Default FORMULA DOES NOT WORK

if i use formula audit...evaluate formula...the value, if false, does NOT
return the false value of the IF function.



"Halim" wrote:

Hi,

No problem with your formula :
=If(a1="","",a2)

maybe your computer use semicolon not comma try use :
=If(a1="";"";a2)

That based on you regional setting I guess!

Or try to not write the formula in A1 ...

HTH,

Halim


--
Halim Nur Ikhwan


"F. Lawrence Kulchar" wrote:

I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise, insert
the contents of cell a2.

IT DOES NOT WORK!!!!

Maybe, the format of a1 is in error; but, anyway, a blank a1 does NOT yield
a blank in my cell, and vice-versa.

WHAT AM I DOING WRONG??

How is this fixed?

Thank you,

FLKulchar

  #12   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 124
Default FORMULA DOES NOT WORK

if i use formula audit...evaluate formula...the value, if false, does NOT
return the false value of the IF function.



"Tim Williams" wrote:

Maybe it's not blank?

Tim


"F. Lawrence Kulchar" wrote in
message ...
I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise, insert
the contents of cell a2.

IT DOES NOT WORK!!!!

Maybe, the format of a1 is in error; but, anyway, a blank a1 does NOT
yield
a blank in my cell, and vice-versa.

WHAT AM I DOING WRONG??

How is this fixed?

Thank you,

FLKulchar




  #13   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,588
Default FORMULA DOES NOT WORK

Is calculation turned on?

Tim

"F. Lawrence Kulchar" wrote in
message ...
if i use formula audit...evaluate formula...the value, if false, does NOT
return the false value of the IF function.



"Tim Williams" wrote:

Maybe it's not blank?

Tim


"F. Lawrence Kulchar" wrote
in
message ...
I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise,
insert
the contents of cell a2.



  #14   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,986
Default FORMULA DOES NOT WORK

One last thought. Do you have other cells linked to a1 and a2 as references?

"F. Lawrence Kulchar" wrote:

EVEN IF I TYPE:

=if(a2=85,"A","F")..

it does NOT WORK..if i change a2 to and from 85, the value in my cell
remains fixed at either "A" or "F"...i.e.the formula is not working.

FLKulchar

"moon" wrote:

What happens if you use =IF(ISEMPTY(A1)=TRUE,"",A2)



"F. Lawrence Kulchar" schreef
in bericht ...
I have the following formula typed into my cell:

=If(a1="","",a2)

I mean: If the contents of a1 is blank, insert a blank; otherwise, insert
the contents of cell a2.

IT DOES NOT WORK!!!!

Maybe, the format of a1 is in error; but, anyway, a blank a1 does NOT
yield
a blank in my cell, and vice-versa.

WHAT AM I DOING WRONG??

How is this fixed?

Thank you,

FLKulchar




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
formula to work in a 3-d reference with 2 work books capt c Excel Worksheet Functions 1 April 8th 09 08:04 PM
Sorting the cells of a formula causes the formula to not work Jake Excel Worksheet Functions 3 January 31st 09 04:42 AM
Help, I need a formula for work. Che028 Excel Worksheet Functions 7 September 23rd 08 03:16 PM
A search for $ in a formula use to work now it does not work JuneJuly Excel Discussion (Misc queries) 2 November 30th 05 10:13 PM
extract a foldername with a formula-update formula does not work solo_razor[_16_] Excel Programming 2 October 30th 03 03:59 PM


All times are GMT +1. The time now is 09:08 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"