Hello. Hope you are doing well.
Trying to analyze helpdesk tickets based on keywords such as "install"
I want to get a count of how many tickets involve user needing to install something
Example:
Keyword: install
Need to count the records where "install" is in the description but not "uninstall"
Table 1: list of keywords
Single column,
Header = "Keyword"
Table 2: all service desk tickets for last 3 months
Headers =
Ticket number
Date
User
Description - this is where the keyword will show up
Instr does not do exact. For "install it is also catching "uninstall" and "reinstall"
Not sure how to get a query built to produce the following two column idea:
Keyword - Count
"Install" - # of tickets
"Uninstall" - # of tickets
"Email not working" - # of tickets
"Admin rights" - # of tickets
Keywords table doesn't tie to the Tickets table so I am stumped.
This is as far I get:
Expr1: Instr(1,[Description],[Keyword],1)
Ticket example:
"My Adobe Acrobat software will not install. Says I need admin rights. Please help."
Phase 1: rudimentary count
Install would get a count of 1
Admin rights would get a count of 1
At some point if I get this working then I'd look to give "Admin rights" more weight than "install".
So Install would = 0
Admin rights = 1
Hope that makes sense.
Thanks.
MS Access 2016
Trying to analyze helpdesk tickets based on keywords such as "install"
I want to get a count of how many tickets involve user needing to install something
Example:
Keyword: install
Need to count the records where "install" is in the description but not "uninstall"
Table 1: list of keywords
Single column,
Header = "Keyword"
Table 2: all service desk tickets for last 3 months
Headers =
Ticket number
Date
User
Description - this is where the keyword will show up
Instr does not do exact. For "install it is also catching "uninstall" and "reinstall"
Not sure how to get a query built to produce the following two column idea:
Keyword - Count
"Install" - # of tickets
"Uninstall" - # of tickets
"Email not working" - # of tickets
"Admin rights" - # of tickets
Keywords table doesn't tie to the Tickets table so I am stumped.
This is as far I get:
Expr1: Instr(1,[Description],[Keyword],1)
Ticket example:
"My Adobe Acrobat software will not install. Says I need admin rights. Please help."
Phase 1: rudimentary count
Install would get a count of 1
Admin rights would get a count of 1
At some point if I get this working then I'd look to give "Admin rights" more weight than "install".
So Install would = 0
Admin rights = 1
Hope that makes sense.
Thanks.
MS Access 2016