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!

if then else statements

Status
Not open for further replies.

j9bman

Technical User
Mar 26, 2009
1
0
0
US
I've written in Impromptu 7.4
if(Most Recent Oganizaion not = Organization)then(

I want the string to result in printing the line if the orgs don't match, but don't want it to print the line if the orgs do match

I'm not sure how to do this, please help
Thanks
 
Assuming by "printing the line", you mean outputting the field 'Most Recent Organization' then would
Code:
IF(Most Recent Organization <> Organization) THEN (Most Recent Organization) ELSE NULL
not suffice? (A blank string may be better than NULL if you are using the field elsewhere.)

Otherwise, if you are looking to suppress a line, then right-click it and use "Conditional Formats".

soi la, soi carré
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top