Hello everyone!
I have a relatively basic understanding of Access, SQL and queries, and I could use a little bit of help here.
I work at a small bank. We're using Access to run a query against several .DBF files to generate a report for our users which displays a list of declined loan applications for a given date range.
Here is how the current query for the report looks:
transact.officerid lists the officer who declined the application.
All of the data within this column displays as DOMAINNAME\USERNAME.
How can I remove DOMAINNAME\ from showing in the report? I've tried a few things but it generally results in an empty report.
Any help on this would be greatly appreciated.
Thank you.
I have a relatively basic understanding of Access, SQL and queries, and I could use a little bit of help here.
I work at a small bank. We're using Access to run a query against several .DBF files to generate a report for our users which displays a list of declined loan applications for a given date range.
Here is how the current query for the report looks:
Code:
SELECT undrwrit.decstatus, transact.branchnum, transact.decsndt, regbdeny.denynum, transact.officerid, lpdetail.classcode, cra.craincome, entity.lastorbusn, entity.first_name, regbdeny.reason
FROM regbdeny INNER JOIN (((lpdetail INNER JOIN (transact INNER JOIN entity ON (transact.primborr = entity.entitynum) AND (transact.trankey = entity.trankey)) ON lpdetail.trankey = transact.trankey) INNER JOIN cra ON transact.trankey = cra.trankey) INNER JOIN undrwrit ON lpdetail.trankey = undrwrit.trankey) ON regbdeny.trankey = transact.trankey
WHERE (((undrwrit.decstatus)="Denied") AND ((transact.branchnum)<="35") AND ((transact.decsndt)>=[Enter Start Date MM/DD/YYYY] And (transact.decsndt)<=[Enter Date MM/DD/YYYY]) AND ((regbdeny.denynum)<=1));
All of the data within this column displays as DOMAINNAME\USERNAME.
How can I remove DOMAINNAME\ from showing in the report? I've tried a few things but it generally results in an empty report.
Any help on this would be greatly appreciated.
Thank you.
Last edited: