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

Filtering the recrods with NULL Value using Power Prompts

Status
Not open for further replies.

vinay17in

Programmer
Sep 19, 2002
9
GB
We are using PowerPrompts for our report which has catalog folder as 'MyReport'. The report has field named as 'Position' which can have null values. And we need to filter our recrods where Report Field 'Position' is null. We have tried out following options without any sucess:

GetQuery().AndFilterBy('[\MyReport\Position] is null');

GetQuery().AndFilterBy('[\MyReport\Position] is Null');

GetQuery().AndFilterBy('[\MyReport\Position] is '+'');

Please suggest us the correct way to filter the recrods which has null values.

Regards,
 
We have to do this as shown here
GetQuery().AndFilterBy("[\MyReport\Position]ismissing");
Regards,
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top