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!

difficuiltly with NULL VALUES?

Status
Not open for further replies.

abhishekpant

Programmer
Dec 21, 2004
38
US
i am dealing with a report which have three field
room no price comments
101 120 non smoking
102 140 <null>
103 80 repaired

i want to change the null value to "unknown" and be sorted in accending order,so the new table should look like

room no price comments
101 120 non smoking
103 80 repaired
102 140 unknown

can anyone help?///////
 
Create a formula for display and sortation purposes containing something akin to:

if isnull({table.comments})
or
{table.comments} = "" then
"Unknown"
else
{table.comments}

Sortation is probably under the Report pulldown.

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top