I want to change the fields in a report to read something different when they appear on my report.
So the field “Criteria” has two options – Local Inventory and Central Office Registered. If it is Local Inventory I want it to output as Minor Asset and Central Office Registered to Major Asset.
This is the query to I have built so far.
SELECT tbl_CurrentAssets.Item, tbl_CurrentAssets.Criteria, IIf(IsNull([COAssetNo]),”No Number”,[COAssetNo]) AS COAN, IIf(IsNull([RecordID]),”No Number”,[RecordID]) AS RID, IIf([Criteria]=”Local Inventory”,[RID],[COAN]) AS RecNum
FROM tbl_CurrentAssets;
Kerry