Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

formula in lotus approach (enter from another field, if current field

Status
Not open for further replies.

maywat

Technical User
Jul 23, 2009
1
0
0
US
I am a newbie and need a bit help w formulas in lotus approach.

What I am trying to do is IF field A is blank to have the data from field B entered in field A,otherwise, to leave field A as is. Also, IF field B is blank (A is blank too), I want contents in field C to be entered in field A.

I tried something like the following but am not successful, obviously. I really appreciate any help anyone can give me. Thanks a million in advance.

If(IsBlank(field_A), (Fill(field_B),(otherwise leave this))

 
If(IsBlank(FieldA)="Ja";FieldB;FieldC)
You can also type a text or value in staid of a field.
Use 'text' to enter a text into this Field.

You can also use:
If( FieldA=''; FiledB; FieldC)

 
Correction!!!

don't use " but '
so 'Ja'
and two times ' for ''


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top