Krunal
Krunal

Reputation: 1188

How to differentiate Normal Invoice vs. Recurring Invoice

I need to print some text in report based on only Recurring Invoice in AR Invoice Report. I have tried with below condition

[ARRegister.ScheduleID] <> null And [ARRegister.Scheduled] = 1

but seems these is not working. Any suggestion how can I achieve this.

Thanks in advance.

Upvotes: 0

Views: 43

Answers (1)

Krunal
Krunal

Reputation: 1188

Found the solution.

I was missing another part in the condition. So the correct condition would be as follow

[ARRegister.ScheduleID] <> null And ([ARRegister.Scheduled] = 1 Or [ARRegister.Scheduled] = 0)

Upvotes: 1

Related Questions