Hi,
I am using a single check box to on the prompt page to get the user input and use that input to set a filter on one of the column of the query.
The paramter that I use while creating the prompt was Prompt_IncludeCash and I have put a sinle value in the static choices list with the value as 'IC'. I am assuming that when the user checks the check box the value that will be passed will be 'IC'. I want to use that value to create a data filter and I am using it in the way below but am not able to get it working.
IF ParamDisplayValue('Prompt_IncludeCash') = 'IC' THEN
[MajorAssetTypeDesc] <> 'TTTTTT'
ELSE
[MajorAssetTypeDesc] <> 'Cash Balance'
END IF
Your help on this will be very helpful
Thanks and Regards,
$wapnil
I am using a single check box to on the prompt page to get the user input and use that input to set a filter on one of the column of the query.
The paramter that I use while creating the prompt was Prompt_IncludeCash and I have put a sinle value in the static choices list with the value as 'IC'. I am assuming that when the user checks the check box the value that will be passed will be 'IC'. I want to use that value to create a data filter and I am using it in the way below but am not able to get it working.
IF ParamDisplayValue('Prompt_IncludeCash') = 'IC' THEN
[MajorAssetTypeDesc] <> 'TTTTTT'
ELSE
[MajorAssetTypeDesc] <> 'Cash Balance'
END IF
Your help on this will be very helpful
Thanks and Regards,
$wapnil