cancel
Showing results for 
Search instead for 
Did you mean: 

Supress Question

Former Member
0 Kudos

If I have two fields that are the same in the Details section... such as two of the same datetime. I know I can supress if Duplicated on the one specific field if it's the same but how would I do the whole line? Is this an If then statement?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Nick,

Plese go in Section expert and select the section and click on Suppress x-2 and write a condition to suppress the duplicated line.

If = Previous Then True

Thanks,

Sastry

Former Member
0 Kudos

Thank you for the response, Im not sure what that formula is going to do for me... but it gives me errors.

Former Member
0 Kudos

Hi Nick,

What is the error you are getting and where you have applied the formula.

Please place the formula to check .

Thanks,

Sastry

Former Member
0 Kudos

If {agentactivity1.StartTimeStamp} = Previous{agentactivity1.EndTimeStamp} Then True

It says the keyword "Then" is missing. I am using the Section Expert under "Details" and checked Suppress Blank Section then hit the X-2 button.

Former Member
0 Kudos

Do you want to suppress the section if startdate=enddate ?

If so then try using conditional suppress condition like

If {agentactivity1.StartTimeStamp} ={agentactivity1.EndTimeStamp} Then True

if not try this

If {agentactivity1.StartTimeStamp} = Previous({agentactivity1.EndTimeStamp}) then True

Regards,

Raghavendra

Former Member
0 Kudos

Yes I do... Neither of those do anything though. Why would it be "Then True"? Wouldn't it be False? Or something else, since I am trying not to display anything. Even though I have tried replacing it with False and still nothing happened.

Former Member
0 Kudos

Did you try by right clicking on detail section>section expert>supress (X+2)-->

If {agentactivity1.StartTimeStamp} ={agentactivity1.EndTimeStamp} Then True

else

false

This supress condition accepts only true or false. According to our condition the formula checks whether

StartTimeStamp=EndTimeStamp if so then it supresses the section if not it wont.

I hope you are looking for the same condition!

Regards,

Raghavendra

Former Member
0 Kudos

Ok, I got it this time! Thank you so much!

Answers (0)