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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dispaly problem (CR10)

Status
Not open for further replies.

Senseial

Programmer
Feb 11, 2004
40
CA
Hello All

I have 2 formula fields. I need to create a parameter and if this parameter in turned on in this case they only want to see display where both formula fields are 0 else show all. I tried with supress and add a furmula to it and it does not work. How can I do this?

Thank you

Alex
 
Since you didn't bother to show what the formulas are doing, nor what you tried, we can only guess, try posting reference information for better results:

Report->Edit Selection Formula->Record

(
If {?MyParameter} = "Yes" then
{table.field} = 0 and
{table.field2} = 0
else
If {?MyParameter} <> "Yes" then
true
)

Note that I'm not referencing the 2 unknown formulas anywhere because it pobably isn't required, but it's impossible to say.

Try to post the following:

Database/Connectivity used
Example data
Expected output

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top