SlideShare a Scribd company logo
1 of 59
Download to read offline
Top 10 Excel Analytic Tests
to Minimize Fraud and
Process Risks
April 19, 2017
About Jim Kaplan, CIA, CFE
 President and Founder of AuditNet®,
the global resource for auditors (now
available on iOS, Android and
Windows devices)
 Auditor, Web Site Guru,
 Internet for Auditors Pioneer
 Recipient of the IIA’s 2007 Bradford
Cadmus Memorial Award.
 Author of “The Auditor’s Guide to
Internet Resources” 2nd Edition
Page 1
About AuditNet® LLC
• AuditNet®, the global resource for auditors, is available on the
Web, iPad, iPhone, Windows and Android devices and features:
• Over 2,500 Reusable Templates, Audit Programs,
Questionnaires, and Control Matrices
• Training without Travel Webinars focusing on fraud, audit
software (ACL, IDEA, Excel), IT audit, and internal audit
• Audit guides, manuals, and books on audit basics and using
audit technology
• LinkedIn Networking Groups
• Monthly Newsletters with Expert Guest Columnists
• Surveys on timely topics for internal auditors
Introductions
Page 2
Housekeeping and Disclaimers
This webinar and its material are the
property of AuditNet® LLC.
Unauthorized usage or recording of this
webinar or any of its material is strictly
forbidden. We are recording the webinar.
Downloading or otherwise duplicating the
webinar recording is expressly
prohibited.
The views expressed by the presenters
do not necessarily represent the views,
positions, or opinions of AuditNet® or the
presenters’ respective organizations.
These materials, and the oral
presentation accompanying them, are for
educational purposes only and do not
constitute accounting or legal advice or
create an accountant-client relationship.
Webinar recording link will be sent to the
Email registered in GoToWebinar.
Submit questions via the chat box on
your screen.
NASBA rules require us to ask polling
questions during the Webinar and CPE
link will be sent via email within 5
business days to those who answer ALL
6 polling questions (no partial CPE).
CPE certificates and recording will be
sent to the email address you registered
with in GTW. We are not responsible for
delivery problems due to spam filters,
attachment restrictions or other controls
in place for your email client.
Post Webinar Feedback. Please
complete the feedback questionnaire to
help us continuously improve our
Webinars
Page 3
Additional Disclaimers
While AuditNet® makes every effort to ensure information is accurate
and complete, AuditNet® makes no representations, guarantees, or
warranties as to the accuracy or completeness of the information
provided via this presentation. AuditNet® specifically disclaims all
liability for any claims or damages that may result from the information
contained in this presentation, including any websites maintained by
third parties and linked to the AuditNet® website.
The views expressed by the presenters do not necessarily represent the
views, positions, or opinions of Grant Thornton, LLP or the presenters’
respective organizations. These materials, and the oral presentation
accompanying them, are for educational purposes only and do not
constitute accounting or legal advice or create an accountant-client
relationship.
Any mention of commercial products is for information only; it does not
imply recommendation or endorsement by AuditNet®
Page 4
Data Files & Video
Data Files
Please see GoToWebinar console
Not all files are available as part of the webinar
 All others, please contact Rich Lanza rich@richlanza.com
Video
Will be made available in the next 3 days by AuditNet®
 Email will be sent from the Go To Webinar system
CPE
Will be made available in the next 3 days by AuditNet®
 Email with link to download the certificate will be sent from
Gensend.io (you must be able to receive mail from gensend.io)
Page 5
Richard B. Lanza, CPA, CFE, CGMA
• Director of Data Analytics for Grant Thornton, LLP
• Assists audit teams daily in the use of analytic software
• Nearly 25 years of ACL, Excel and other software usage
• Has written and spoken on the use of audit data analytics for over two decades
• Received the outstanding achievement in business award by the Association of
Certified Fraud Examiners for developing the publication Proactively Detecting
Fraud Using Computer Audit Reports as a research project for the IIA
• Recently was a contributing author of:
• Global Technology Audit Guide (GTAG #13) Fraud In An Automated
World – Institute Of Internal Auditors.
• Data Analytics – A Practical Approach - research whitepaper for the
information system accountability control association.
• Cost Recovery – Turning Your Accounts Payable Department Into A
Profit Center – Wiley And Sons.
• In 2015, discovered a new textual analytic technique using letters called the
Lanza Approach to Letter Analytics (LALA)TM
For more information Email Rich at rich.lanza@us.gt.com
6
Today’s Agenda
Based on past experience, learn why we selected our top
10 analytic tests.
Use a case study set of examples in payables and general
ledger to see how audit steps can be automated into
analytics using Excel.
Use Excel as audit software, able to mimic practically all
data analytic commands found in more advanced tools.
Apply analytics across the entire lifecycle from risk
assessment, to planning, fieldwork, and reporting.
Page 7
Test #1 – Stratify Data
Getting Started:
Pivot to New Sheet
Page 9
Getting Around The Pivot
 Right click on the amount fields (data part) to
see field list and edit various Pivot Table options
 Select from the Top Ribbon Menu the Options
and Design menus for Pivot Tables (Excel
creates them when a Pivot Table is created) –
best and easiest way to make changes
Page 10
Stratify Your Data – Ver 1
Page 11
=IF(B4>1000,“3. Over $1000",IF(B4>100,“2. Over
$100 to $1,000",IF(B4<=100,“1. Up to $100")))
This will create three strata:
1. Up to $100
2. Over $100 to $1,000
3. Over $1,000
Start from highest to lowest – Excel picks the first
matching item
Stratify Your Data – Ver 2
Page 12
Stratification Types
 By Month
 By Department
 By Business Partner (Vendor / Customer)
 By Account
 By Enterer
Page 13
Polling Question #1
Page 14
2. Codify Data To Run Round $s…and More
Text Functions
Page 16
LEFT()
With a determined set of characters in a set string, the first character
is returned from, the left of the cell
LEN()
Identifies the number of characters in a set and returns that as a
number in the cell
LOWER()
UPPER()
Lower case letters substitute upper case letters (reverse for upper)
MID()
Identifies characters in a set based on a start position and number of
characters which is determined by the user
PROPER()
Capitalizes the first letter of each character and the remaining are
lowercase
RIGHT()
Pulls the last set of character from a set and the number of character
is set by the user
TEXT()
Returns the text version of a number with a specified number format
(i.e., =TEXT(C999,"0.00") will convert 12345 into a text version of
12345.00)
TRIM()
Keeps single spaces only between words and removes all other
spaces
Text Functions
Page 17
CONCATENATE()
Combines numerous strings to one stream (You can also
use the & character to combine/merge/join fields)
REPT()
Repeats a character as many times as the user wants i.e. :
=REPT (“J”,10) wll lead to ‘JJJJJJJJJJ
CHAR()
Identifies a character with a number which is presented in
the cell.This number then can be used to convert other
CHAR to the number translate code from other sources
(i.e., CHAR(127) is a nonprintable character and CHAR(9)
is a tab)
CLEAN() From a text string, it removes the nonprintable characters
Math Functions
Page 18
VALUE() A number is given to identify a string now as a number
ISNA()
Returns true if the formula leads to a NA solution – This is
normally combined with IF so =IF(ISNA(C3/D3),0,(D3/D3))
AVERAGE() Is the mean of a range of cells set in the average function
MEDIAN()
Provides the middle number between the largest set value of
numbers and the lowest value of numbers
MAX() Provides the top value in a set of values
MIN() Provides the lowest value in a set of values
STDEV() Calculates the standard deviation for a range of numbers
Math Functions
Page 19
ABS() Turns a negative or positive number into a positive number
MOD()
Determines whether a number is round to a divisor set by the
user (i.e. : divisor equals 1000 and all numbers where MOD() are
=0 would be round to 1000)
ROUND() Sets a number to a specified decimal place
Date and Time Functions
Page 20
DATE() A date is created with a year, month, and day (i.e. : 2015,10,7)
DAY() By pointing to a specific field the function identifies the day
HOUR()
Identifies a hour in a time field which is set to military time (0:00-
23:00 hrs.)
MINUTE() Identifies the minutes in a time field which is set at 0-59
MONTH() Identifies the month in a time field which is set as 1=January
NOW() Sets to the actual current date and time
TODAY() Sets to the actual date
Date and Time Functions
Page 21
NETWORKS ()
Identifies the ACTUAL Network days in a whole number from start to
finish dates. (weekends and holidays are excluded unless specified)
SECOND() Identifies seconds in a time field ie:0-59
WEEKDAY()
Identifies a day during a specified week in a specific timeframe.
1=Sunday
WEEKUM() Identifies a specific week number in the calendar year
YEAR() Identifies a year with a specific number i.e: 1900-9999
Polling Question #2
Page 22
3. Duplicates and 4. Averages
3. Duplicate Payments
• Same Vendor Number; Same Amount; Same Date
• Same Vendor Number; Same Amount; Different
Invoice Number
• Same Amount; Same Date; Different Vendor
• Same Vendor; Same Amount; Different Date
Page 24
Reducing False Positives
http://bit.ly/1Pdz3Df
25
Blog article explains
specifically explains
how to:
Remove noise
Filter top
predictors
Duplicate hit rates
increased to 50%
vs. less than 1%
4. Calculating an Average DPO
Create a calculated field for check less invoice date
(DPO) – in data or the Pivot
Add sum of Invoice Amount and Average of newly
calculated field
Page 26
Average Income per Zip Code –
IRS - 2013
Quick Link: http://1.usa.gov/28YzTSX
27
Polling Question #3
Page 28
5. Vendor Background and Geomapping
Search Anything Corporate
Page 30
Specific Business Partner
Information
Yellow Pages
 http://www.yellowpages.com/
 http://www.bbb.org/
 http://www.linkedin.com
 http://glassdoor.com
IP Address Lookup
 www.iplocation.net for Email and reverse DNS lookup
State Websites
 Business Listings and Incorporation Documents
 Unclaimed Property
 http://www.statelocalgov.net/
31
Wayback Machine
https://archive.org/web/
32
Is Your Organization
Working With Terrorists?
Page 33
 https://sanctionssearch.ofac.treas.gov/
Are Vendors On a Watch List
Sam.Gov
Page 34
CIA Chiefs of State
https://www.cia.gov/library/publications/world-leaders-1/
Page 35
Are Your Vendors Real?
IRS TIN Matching Program
Validates U.S. Tax Identification Numbers
Can submit up to 100,000 TIN submissions at a
time
Make sure all punctuation is removed
See http://www.irs.gov/for-Tax-Pros and
enter “TIN matching program” in the search box
Page 36
Power Map for Excel 2013
See:
www.MrExcel.com
Page 37
Tests 6 to 8 on the Lifeblood of the
Organization…..the General Ledger
6. Entries Not Netting to Zero
Pivot Table the journals by entry number
Create a Calculated Field in the Pivot Table to be
the difference between the debit and credit values
Filter where the entries do not net to zero
39
Polling Question #4
Page 40
7. Enterer and Approver Analysis
PivotTable the enterers (rows) and
approvers (columns)
Calculate a % of transaction count
41
8. Other Side of Revenue Entry
Code the revenue accounts
Pivot table the entries associated with revenue
 Add the journal entry field to the Pivot Table to
then identify the journals for extraction
 Filter only on revenue accounts
Use Vlookup() to extract entry details
Pivot table the extracted revenue entries
42
9. Benford’s Law and Digital Analysis
I’ve Got Your Number – Mark J.
Nigrini, Ph.D.
Journal of Accountancy -
http://bit.ly/1skDvZe
Random numbers follow a
pattern as defined in table at
left
Focus is placed on the first
digits of amount fields
Digital analysis can be applied
to ledger data over time
44
Number Ranking
 Summarize each amount of the journal entries
(Pivot or ACL)
 Rank each number in order of occurrence
 Look for new numbers appearing this quarter
 Score each item in a sliding scale
 May be easiest to use a stratified score
 Decide if unique is weirder than non-unique
 Select samples based on unusual numbers
Page 45
Polling Question #5
Page 46
10. Red Flag and Textual Analytics
Lessons from
WorldCom/ MCI
The fraud was accomplished primarily in
two ways:
1.Booking "line costs" (interconnection
expenses with other telecommunication
companies) as capital expenditures on
the balance sheet instead of expenses.
2.Inflating revenues with bogus
accounting entries from "corporate
unallocated revenue accounts".
In 2002, a small team of internal
auditors at WorldCom worked together,
often at night and secretly, to investigate
and reveal $3.8 billion worth of fraud….
Per Wikipedia – MCI Inc.
Page 48
Can You Read This?
It deosn't mttaer in waht oredr
the ltteers in a wrod are, the
olny iprmoetnt tihng is taht the
frist and lsat ltteer be at the rghit
pclae.
49
Word Summary Analysis
Split account or journal description field
Copy and paste each column to the end
Add a type (or few type) fields
Pivot table on the combined list of words
by types
50
Page 51
A Benford’s Law For Words?
Useful Links on LALA
 http://bit.ly/1jFD87b - Blog announcing the discovery of letter
analytics.
 http://bit.ly/1RZpolz - Research Paper #1 – Focused on explaining the
letter analytic concept with reference to a benchmark for the English
Language and an analysis of British song titles from 1960 to 1999.
 http://bit.ly/1QebYkL - Research Paper #2 – Provides a more in-depth
analysis of the population of text data and how letters can explain text
variations over time more quickly than word summaries. Three
examples are provided including Shakespeare’s plays, Berkshire
Hathaway shareholder reports and my personal Emails.
 http://bit.ly/1W0CAZO - Predictive Analytics Times article on how
Word clouds analysis could improved with letter analytic visualizations
 http://bit.ly/1TGwvPS and http://bit.ly/21mEbsU - ACFE Fraud
Magazine articles on “The Benford’s Law of Words – Parts 1 and 2”
52
Polling Question #6
Page 53
Questions?
Any Questions?
Don’t be Shy!
Page 54
Data Files & Video
Data Files
Please see GoToWebinar console
Not all files are available as part of the webinar
 All others, please contact Rich Lanza rich@richlanza.com
Video
Will be made available in the next 3 days by AuditNet®
 Email will be sent from the Go To Webinar system
Page 55
AuditNet® Training on the Go
See www.auditnet.org
Offering 9 Unique Training Courses / 18 CPE
Video playback of past / missed courses
 Don’t forget the data files and templates to get you started
https://www.auditnet.org/training
Page 56
AuditSoftwareVideos.com
Now Free (But Not for Long!)
70+ Hours of videos accessible for FREE subscriptions
Repeat video and text instruction as much as you need
Sample files, scripts, and macros in ACL™, Excel™, etc.
available for purchase
Bite-size video format (3 to 10 minutes)
>> Professionally
produced videos by
instructors with over 20
years experience in
ACL™, Excel™ , and
more
Page 57
Thank You!
Jim Kaplan
AuditNet® LLC
1-800-385-1625
Email: webinars@auditnet.org
www.auditnet.org
Richard B. Lanza, CPA, CFE, CGMA
Contact Information
D: +1 732 516 5527
M: +1 732 331 3494
Email: rich.lanza@us.gt.com
Page 58

More Related Content

What's hot

Principles & practices of auditing
Principles & practices of auditingPrinciples & practices of auditing
Principles & practices of auditingravalhimani
 
Definition of audit programme
Definition of audit programmeDefinition of audit programme
Definition of audit programmestudent
 
Financial Statements Audit
Financial Statements AuditFinancial Statements Audit
Financial Statements AuditSalih Islam
 
Business Intelligence Solution in the Health Insurance Company
Business Intelligence Solution in the Health Insurance CompanyBusiness Intelligence Solution in the Health Insurance Company
Business Intelligence Solution in the Health Insurance CompanyThuy Tran
 
Effective General Ledger and Journal Entry Fraud Detection Using Data Analytics
Effective General Ledger and Journal Entry Fraud Detection Using Data AnalyticsEffective General Ledger and Journal Entry Fraud Detection Using Data Analytics
Effective General Ledger and Journal Entry Fraud Detection Using Data AnalyticsFraudBusters
 
Internal audit report writing
Internal audit report writingInternal audit report writing
Internal audit report writingNeha Kothari
 
Types of auditor
Types of auditorTypes of auditor
Types of auditorWINNERbd.it
 
Finance Roadmap example
Finance Roadmap exampleFinance Roadmap example
Finance Roadmap exampleKim Masters
 
Common internal audit findings & how to avoid them
Common internal audit findings & how to avoid themCommon internal audit findings & how to avoid them
Common internal audit findings & how to avoid themSurajit Datta
 
Internal Audit Project
Internal Audit ProjectInternal Audit Project
Internal Audit ProjectSoumeet Sarkar
 
Basic Internal Auditing Presentation
Basic Internal Auditing PresentationBasic Internal Auditing Presentation
Basic Internal Auditing PresentationVernon Benjamin
 
Role and responsibility of Internal Audit under new Companies Act 2013
Role and responsibility of Internal Audit under new Companies Act 2013Role and responsibility of Internal Audit under new Companies Act 2013
Role and responsibility of Internal Audit under new Companies Act 2013Manoj Agarwal
 
AUDIT REPORT [ AUDITING ]
AUDIT REPORT [ AUDITING ]AUDIT REPORT [ AUDITING ]
AUDIT REPORT [ AUDITING ]Rakshit Porwal
 
Corporate Social Accounting-2
Corporate Social Accounting-2Corporate Social Accounting-2
Corporate Social Accounting-2AkkiMaruthi
 
Analysis of financial statements
Analysis of financial statementsAnalysis of financial statements
Analysis of financial statementsDr. Abzal Basha
 
Sarbanes-Oxley act
Sarbanes-Oxley actSarbanes-Oxley act
Sarbanes-Oxley actRizze
 

What's hot (20)

Principles & practices of auditing
Principles & practices of auditingPrinciples & practices of auditing
Principles & practices of auditing
 
Definition of audit programme
Definition of audit programmeDefinition of audit programme
Definition of audit programme
 
Financial Statements Audit
Financial Statements AuditFinancial Statements Audit
Financial Statements Audit
 
Business Intelligence Solution in the Health Insurance Company
Business Intelligence Solution in the Health Insurance CompanyBusiness Intelligence Solution in the Health Insurance Company
Business Intelligence Solution in the Health Insurance Company
 
Auditor's report
Auditor's reportAuditor's report
Auditor's report
 
Effective General Ledger and Journal Entry Fraud Detection Using Data Analytics
Effective General Ledger and Journal Entry Fraud Detection Using Data AnalyticsEffective General Ledger and Journal Entry Fraud Detection Using Data Analytics
Effective General Ledger and Journal Entry Fraud Detection Using Data Analytics
 
Internal audit report writing
Internal audit report writingInternal audit report writing
Internal audit report writing
 
Types of auditor
Types of auditorTypes of auditor
Types of auditor
 
Finance Roadmap example
Finance Roadmap exampleFinance Roadmap example
Finance Roadmap example
 
Common internal audit findings & how to avoid them
Common internal audit findings & how to avoid themCommon internal audit findings & how to avoid them
Common internal audit findings & how to avoid them
 
Internal Audit Project
Internal Audit ProjectInternal Audit Project
Internal Audit Project
 
Audit presentation
Audit presentationAudit presentation
Audit presentation
 
Audit report
Audit reportAudit report
Audit report
 
Basic Internal Auditing Presentation
Basic Internal Auditing PresentationBasic Internal Auditing Presentation
Basic Internal Auditing Presentation
 
Role and responsibility of Internal Audit under new Companies Act 2013
Role and responsibility of Internal Audit under new Companies Act 2013Role and responsibility of Internal Audit under new Companies Act 2013
Role and responsibility of Internal Audit under new Companies Act 2013
 
AUDIT REPORT [ AUDITING ]
AUDIT REPORT [ AUDITING ]AUDIT REPORT [ AUDITING ]
AUDIT REPORT [ AUDITING ]
 
Corporate Social Accounting-2
Corporate Social Accounting-2Corporate Social Accounting-2
Corporate Social Accounting-2
 
Analysis of financial statements
Analysis of financial statementsAnalysis of financial statements
Analysis of financial statements
 
Sarbanes-Oxley act
Sarbanes-Oxley actSarbanes-Oxley act
Sarbanes-Oxley act
 
Oracle FCCS: A Deep Dive
Oracle FCCS: A Deep DiveOracle FCCS: A Deep Dive
Oracle FCCS: A Deep Dive
 

Similar to Top 10 Excel Analytic Tests to Minimize Fraud and Process Risks

When Data Visualizations and Data Imports Just Don’t Work
When Data Visualizations and Data Imports Just Don’t WorkWhen Data Visualizations and Data Imports Just Don’t Work
When Data Visualizations and Data Imports Just Don’t WorkJim Kaplan CIA CFE
 
Excel Pivot Tables and Graphing for Auditors
Excel Pivot Tables and Graphing for AuditorsExcel Pivot Tables and Graphing for Auditors
Excel Pivot Tables and Graphing for AuditorsJim Kaplan CIA CFE
 
Visualize audit sampling and fraud detection in excel
Visualize audit sampling and fraud detection in excelVisualize audit sampling and fraud detection in excel
Visualize audit sampling and fraud detection in excelJim Kaplan CIA CFE
 
Using MS Excel In Your Next Audit - Top Basic & Intermediate Techniques
Using MS Excel In Your Next Audit - Top Basic & Intermediate Techniques Using MS Excel In Your Next Audit - Top Basic & Intermediate Techniques
Using MS Excel In Your Next Audit - Top Basic & Intermediate Techniques Jim Kaplan CIA CFE
 
Exploiting data quality tools to meet the expectation of strategic business u...
Exploiting data quality tools to meet the expectation of strategic business u...Exploiting data quality tools to meet the expectation of strategic business u...
Exploiting data quality tools to meet the expectation of strategic business u...Zubair Abbasi
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolioeileensauer
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolioeileensauer
 
Using Microsoft Excel in Your Next Internal and External Audit - Learning The...
Using Microsoft Excel in Your Next Internal and External Audit - Learning The...Using Microsoft Excel in Your Next Internal and External Audit - Learning The...
Using Microsoft Excel in Your Next Internal and External Audit - Learning The...Jim Kaplan CIA CFE
 
20150311 auditnet ap_procure_excel_rlv2
20150311 auditnet ap_procure_excel_rlv220150311 auditnet ap_procure_excel_rlv2
20150311 auditnet ap_procure_excel_rlv2Jim Kaplan CIA CFE
 
IS320 Database Applications.docx
IS320 Database Applications.docxIS320 Database Applications.docx
IS320 Database Applications.docxstirlingvwriters
 
Using feature teams to deliver high business value
Using feature teams to deliver high business valueUsing feature teams to deliver high business value
Using feature teams to deliver high business valueThoughtworks
 
Techniques to Effectively Monitor the Performance of Customers in the Cloud
Techniques to Effectively Monitor the Performance of Customers in the CloudTechniques to Effectively Monitor the Performance of Customers in the Cloud
Techniques to Effectively Monitor the Performance of Customers in the CloudSalesforce Engineering
 
ClearCost Introduction 2015
ClearCost Introduction 2015ClearCost Introduction 2015
ClearCost Introduction 2015Mark S. Mahre
 
Spreadsheet Compliance and Management in Office and SharePoint 2013 Pitch
Spreadsheet Compliance and Management in Office and SharePoint 2013 PitchSpreadsheet Compliance and Management in Office and SharePoint 2013 Pitch
Spreadsheet Compliance and Management in Office and SharePoint 2013 PitchMicleus
 
Getting Started Using ACL in Your Next Audit
Getting Started Using ACL in Your Next AuditGetting Started Using ACL in Your Next Audit
Getting Started Using ACL in Your Next AuditJim Kaplan CIA CFE
 
Endeca information discovery for Oracle Receivables ( EBS)
Endeca information discovery for Oracle Receivables ( EBS)Endeca information discovery for Oracle Receivables ( EBS)
Endeca information discovery for Oracle Receivables ( EBS)Bizinsight Consulting Inc
 
Capstone New Century Wellness Group Task Financial.pdf
Capstone New Century Wellness Group Task Financial.pdfCapstone New Century Wellness Group Task Financial.pdf
Capstone New Century Wellness Group Task Financial.pdfstudywriters
 
Service Catalog Essentials: 5 Keys to Good Service Design in IT Service Catalogs
Service Catalog Essentials: 5 Keys to Good Service Design in IT Service CatalogsService Catalog Essentials: 5 Keys to Good Service Design in IT Service Catalogs
Service Catalog Essentials: 5 Keys to Good Service Design in IT Service CatalogsEvergreen Systems
 
Assignment 2 R Programming Introduction 1This assignment r.docx
Assignment 2 R Programming Introduction 1This assignment r.docxAssignment 2 R Programming Introduction 1This assignment r.docx
Assignment 2 R Programming Introduction 1This assignment r.docxrock73
 

Similar to Top 10 Excel Analytic Tests to Minimize Fraud and Process Risks (20)

When Data Visualizations and Data Imports Just Don’t Work
When Data Visualizations and Data Imports Just Don’t WorkWhen Data Visualizations and Data Imports Just Don’t Work
When Data Visualizations and Data Imports Just Don’t Work
 
Excel Pivot Tables and Graphing for Auditors
Excel Pivot Tables and Graphing for AuditorsExcel Pivot Tables and Graphing for Auditors
Excel Pivot Tables and Graphing for Auditors
 
Visualize audit sampling and fraud detection in excel
Visualize audit sampling and fraud detection in excelVisualize audit sampling and fraud detection in excel
Visualize audit sampling and fraud detection in excel
 
Using MS Excel In Your Next Audit - Top Basic & Intermediate Techniques
Using MS Excel In Your Next Audit - Top Basic & Intermediate Techniques Using MS Excel In Your Next Audit - Top Basic & Intermediate Techniques
Using MS Excel In Your Next Audit - Top Basic & Intermediate Techniques
 
Exploiting data quality tools to meet the expectation of strategic business u...
Exploiting data quality tools to meet the expectation of strategic business u...Exploiting data quality tools to meet the expectation of strategic business u...
Exploiting data quality tools to meet the expectation of strategic business u...
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
 
Using Microsoft Excel in Your Next Internal and External Audit - Learning The...
Using Microsoft Excel in Your Next Internal and External Audit - Learning The...Using Microsoft Excel in Your Next Internal and External Audit - Learning The...
Using Microsoft Excel in Your Next Internal and External Audit - Learning The...
 
20150311 auditnet ap_procure_excel_rlv2
20150311 auditnet ap_procure_excel_rlv220150311 auditnet ap_procure_excel_rlv2
20150311 auditnet ap_procure_excel_rlv2
 
IS320 Database Applications.docx
IS320 Database Applications.docxIS320 Database Applications.docx
IS320 Database Applications.docx
 
Using feature teams to deliver high business value
Using feature teams to deliver high business valueUsing feature teams to deliver high business value
Using feature teams to deliver high business value
 
Techniques to Effectively Monitor the Performance of Customers in the Cloud
Techniques to Effectively Monitor the Performance of Customers in the CloudTechniques to Effectively Monitor the Performance of Customers in the Cloud
Techniques to Effectively Monitor the Performance of Customers in the Cloud
 
ClearCost Introduction 2015
ClearCost Introduction 2015ClearCost Introduction 2015
ClearCost Introduction 2015
 
Spreadsheet Compliance and Management in Office and SharePoint 2013 Pitch
Spreadsheet Compliance and Management in Office and SharePoint 2013 PitchSpreadsheet Compliance and Management in Office and SharePoint 2013 Pitch
Spreadsheet Compliance and Management in Office and SharePoint 2013 Pitch
 
Getting Started Using ACL in Your Next Audit
Getting Started Using ACL in Your Next AuditGetting Started Using ACL in Your Next Audit
Getting Started Using ACL in Your Next Audit
 
Endeca information discovery for Oracle Receivables ( EBS)
Endeca information discovery for Oracle Receivables ( EBS)Endeca information discovery for Oracle Receivables ( EBS)
Endeca information discovery for Oracle Receivables ( EBS)
 
Capstone New Century Wellness Group Task Financial.pdf
Capstone New Century Wellness Group Task Financial.pdfCapstone New Century Wellness Group Task Financial.pdf
Capstone New Century Wellness Group Task Financial.pdf
 
Service Catalog Essentials: 5 Keys to Good Service Design in IT Service Catalogs
Service Catalog Essentials: 5 Keys to Good Service Design in IT Service CatalogsService Catalog Essentials: 5 Keys to Good Service Design in IT Service Catalogs
Service Catalog Essentials: 5 Keys to Good Service Design in IT Service Catalogs
 
battery pa report.docx
battery pa report.docxbattery pa report.docx
battery pa report.docx
 
Assignment 2 R Programming Introduction 1This assignment r.docx
Assignment 2 R Programming Introduction 1This assignment r.docxAssignment 2 R Programming Introduction 1This assignment r.docx
Assignment 2 R Programming Introduction 1This assignment r.docx
 

More from Jim Kaplan CIA CFE

Enhanced fraud detection with data analytics
Enhanced fraud detection with data analyticsEnhanced fraud detection with data analytics
Enhanced fraud detection with data analyticsJim Kaplan CIA CFE
 
mplementing and Auditing GDPR Series (10 of 10)
mplementing and Auditing GDPR Series (10 of 10) mplementing and Auditing GDPR Series (10 of 10)
mplementing and Auditing GDPR Series (10 of 10) Jim Kaplan CIA CFE
 
Touchstone Research for Internal Audit 2020 – A Look at the Now and Tomorrow ...
Touchstone Research for Internal Audit 2020 – A Look at the Now and Tomorrow ...Touchstone Research for Internal Audit 2020 – A Look at the Now and Tomorrow ...
Touchstone Research for Internal Audit 2020 – A Look at the Now and Tomorrow ...Jim Kaplan CIA CFE
 
Implementing and Auditing GDPR Series (9 of 10)
Implementing and Auditing GDPR Series (9 of 10) Implementing and Auditing GDPR Series (9 of 10)
Implementing and Auditing GDPR Series (9 of 10) Jim Kaplan CIA CFE
 
How to detect fraud like a pro detective slides
How to detect fraud like a pro detective slides How to detect fraud like a pro detective slides
How to detect fraud like a pro detective slides Jim Kaplan CIA CFE
 
Implementing and Auditing GDPR Series (8 of 10)
Implementing and Auditing GDPR Series (8 of 10) Implementing and Auditing GDPR Series (8 of 10)
Implementing and Auditing GDPR Series (8 of 10) Jim Kaplan CIA CFE
 
How to get auditors performing basic analytics using excel
How to get auditors performing basic analytics using excel How to get auditors performing basic analytics using excel
How to get auditors performing basic analytics using excel Jim Kaplan CIA CFE
 
Implementing and Auditing General Data Protection Regulation
Implementing and Auditing General Data Protection RegulationImplementing and Auditing General Data Protection Regulation
Implementing and Auditing General Data Protection RegulationJim Kaplan CIA CFE
 
When is a Duplicate not a Duplicate? Detecting Errors and Fraud
When is a Duplicate not a Duplicate? Detecting Errors and FraudWhen is a Duplicate not a Duplicate? Detecting Errors and Fraud
When is a Duplicate not a Duplicate? Detecting Errors and FraudJim Kaplan CIA CFE
 
General Data Protection Regulation Webinar 6
General Data Protection Regulation Webinar 6 General Data Protection Regulation Webinar 6
General Data Protection Regulation Webinar 6 Jim Kaplan CIA CFE
 
Focused agile audit planning using analytics
Focused agile audit planning using analyticsFocused agile audit planning using analytics
Focused agile audit planning using analyticsJim Kaplan CIA CFE
 
General Data Protection Regulation for Auditors 5 of 10
General Data Protection Regulation for Auditors 5 of 10General Data Protection Regulation for Auditors 5 of 10
General Data Protection Regulation for Auditors 5 of 10Jim Kaplan CIA CFE
 
Ethics and the Internal Auditor
Ethics and the Internal AuditorEthics and the Internal Auditor
Ethics and the Internal AuditorJim Kaplan CIA CFE
 
How analytics should be used in controls testing instead of sampling
How analytics should be used in controls testing instead of sampling How analytics should be used in controls testing instead of sampling
How analytics should be used in controls testing instead of sampling Jim Kaplan CIA CFE
 
How analytics should be used in controls testing instead of sampling
How analytics should be used in controls testing instead of samplingHow analytics should be used in controls testing instead of sampling
How analytics should be used in controls testing instead of samplingJim Kaplan CIA CFE
 
Implementing and Auditing GDPR Series (3 of 10)
Implementing and Auditing GDPR Series (3 of 10) Implementing and Auditing GDPR Series (3 of 10)
Implementing and Auditing GDPR Series (3 of 10) Jim Kaplan CIA CFE
 

More from Jim Kaplan CIA CFE (20)

Enhanced fraud detection with data analytics
Enhanced fraud detection with data analyticsEnhanced fraud detection with data analytics
Enhanced fraud detection with data analytics
 
mplementing and Auditing GDPR Series (10 of 10)
mplementing and Auditing GDPR Series (10 of 10) mplementing and Auditing GDPR Series (10 of 10)
mplementing and Auditing GDPR Series (10 of 10)
 
Touchstone Research for Internal Audit 2020 – A Look at the Now and Tomorrow ...
Touchstone Research for Internal Audit 2020 – A Look at the Now and Tomorrow ...Touchstone Research for Internal Audit 2020 – A Look at the Now and Tomorrow ...
Touchstone Research for Internal Audit 2020 – A Look at the Now and Tomorrow ...
 
Implementing and Auditing GDPR Series (9 of 10)
Implementing and Auditing GDPR Series (9 of 10) Implementing and Auditing GDPR Series (9 of 10)
Implementing and Auditing GDPR Series (9 of 10)
 
How to detect fraud like a pro detective slides
How to detect fraud like a pro detective slides How to detect fraud like a pro detective slides
How to detect fraud like a pro detective slides
 
Implementing and Auditing GDPR Series (8 of 10)
Implementing and Auditing GDPR Series (8 of 10) Implementing and Auditing GDPR Series (8 of 10)
Implementing and Auditing GDPR Series (8 of 10)
 
How to get auditors performing basic analytics using excel
How to get auditors performing basic analytics using excel How to get auditors performing basic analytics using excel
How to get auditors performing basic analytics using excel
 
Tracking down outliers
Tracking down outliersTracking down outliers
Tracking down outliers
 
CyberSecurity Update Slides
CyberSecurity Update SlidesCyberSecurity Update Slides
CyberSecurity Update Slides
 
Implementing and Auditing General Data Protection Regulation
Implementing and Auditing General Data Protection RegulationImplementing and Auditing General Data Protection Regulation
Implementing and Auditing General Data Protection Regulation
 
When is a Duplicate not a Duplicate? Detecting Errors and Fraud
When is a Duplicate not a Duplicate? Detecting Errors and FraudWhen is a Duplicate not a Duplicate? Detecting Errors and Fraud
When is a Duplicate not a Duplicate? Detecting Errors and Fraud
 
General Data Protection Regulation Webinar 6
General Data Protection Regulation Webinar 6 General Data Protection Regulation Webinar 6
General Data Protection Regulation Webinar 6
 
Focused agile audit planning using analytics
Focused agile audit planning using analyticsFocused agile audit planning using analytics
Focused agile audit planning using analytics
 
General Data Protection Regulation for Auditors 5 of 10
General Data Protection Regulation for Auditors 5 of 10General Data Protection Regulation for Auditors 5 of 10
General Data Protection Regulation for Auditors 5 of 10
 
Ethics and the Internal Auditor
Ethics and the Internal AuditorEthics and the Internal Auditor
Ethics and the Internal Auditor
 
How analytics should be used in controls testing instead of sampling
How analytics should be used in controls testing instead of sampling How analytics should be used in controls testing instead of sampling
How analytics should be used in controls testing instead of sampling
 
How analytics should be used in controls testing instead of sampling
How analytics should be used in controls testing instead of samplingHow analytics should be used in controls testing instead of sampling
How analytics should be used in controls testing instead of sampling
 
GDPR Series Session 4
GDPR Series Session 4GDPR Series Session 4
GDPR Series Session 4
 
Cybersecurity Slides
Cybersecurity  SlidesCybersecurity  Slides
Cybersecurity Slides
 
Implementing and Auditing GDPR Series (3 of 10)
Implementing and Auditing GDPR Series (3 of 10) Implementing and Auditing GDPR Series (3 of 10)
Implementing and Auditing GDPR Series (3 of 10)
 

Recently uploaded

Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAroojKhan71
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxolyaivanovalion
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130Suhani Kapoor
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxStephen266013
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxJohnnyPlasten
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxolyaivanovalion
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiLow Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiSuhani Kapoor
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFxolyaivanovalion
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxolyaivanovalion
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfRachmat Ramadhan H
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfMarinCaroMartnezBerg
 
VidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxVidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxolyaivanovalion
 
Unveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystUnveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystSamantha Rae Coolbeth
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfLars Albertsson
 
Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxfirstjob4
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiSuhani Kapoor
 

Recently uploaded (20)

Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptx
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docx
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptx
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptx
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service BhilaiLow Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
Low Rate Call Girls Bhilai Anika 8250192130 Independent Escort Service Bhilai
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
VidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxVidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptx
 
Unveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystUnveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data Analyst
 
Industrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdfIndustrialised data - the key to AI success.pdf
Industrialised data - the key to AI success.pdf
 
Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptx
 
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service AmravatiVIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
VIP Call Girls in Amravati Aarohi 8250192130 Independent Escort Service Amravati
 

Top 10 Excel Analytic Tests to Minimize Fraud and Process Risks

  • 1. Top 10 Excel Analytic Tests to Minimize Fraud and Process Risks April 19, 2017
  • 2. About Jim Kaplan, CIA, CFE  President and Founder of AuditNet®, the global resource for auditors (now available on iOS, Android and Windows devices)  Auditor, Web Site Guru,  Internet for Auditors Pioneer  Recipient of the IIA’s 2007 Bradford Cadmus Memorial Award.  Author of “The Auditor’s Guide to Internet Resources” 2nd Edition Page 1
  • 3. About AuditNet® LLC • AuditNet®, the global resource for auditors, is available on the Web, iPad, iPhone, Windows and Android devices and features: • Over 2,500 Reusable Templates, Audit Programs, Questionnaires, and Control Matrices • Training without Travel Webinars focusing on fraud, audit software (ACL, IDEA, Excel), IT audit, and internal audit • Audit guides, manuals, and books on audit basics and using audit technology • LinkedIn Networking Groups • Monthly Newsletters with Expert Guest Columnists • Surveys on timely topics for internal auditors Introductions Page 2
  • 4. Housekeeping and Disclaimers This webinar and its material are the property of AuditNet® LLC. Unauthorized usage or recording of this webinar or any of its material is strictly forbidden. We are recording the webinar. Downloading or otherwise duplicating the webinar recording is expressly prohibited. The views expressed by the presenters do not necessarily represent the views, positions, or opinions of AuditNet® or the presenters’ respective organizations. These materials, and the oral presentation accompanying them, are for educational purposes only and do not constitute accounting or legal advice or create an accountant-client relationship. Webinar recording link will be sent to the Email registered in GoToWebinar. Submit questions via the chat box on your screen. NASBA rules require us to ask polling questions during the Webinar and CPE link will be sent via email within 5 business days to those who answer ALL 6 polling questions (no partial CPE). CPE certificates and recording will be sent to the email address you registered with in GTW. We are not responsible for delivery problems due to spam filters, attachment restrictions or other controls in place for your email client. Post Webinar Feedback. Please complete the feedback questionnaire to help us continuously improve our Webinars Page 3
  • 5. Additional Disclaimers While AuditNet® makes every effort to ensure information is accurate and complete, AuditNet® makes no representations, guarantees, or warranties as to the accuracy or completeness of the information provided via this presentation. AuditNet® specifically disclaims all liability for any claims or damages that may result from the information contained in this presentation, including any websites maintained by third parties and linked to the AuditNet® website. The views expressed by the presenters do not necessarily represent the views, positions, or opinions of Grant Thornton, LLP or the presenters’ respective organizations. These materials, and the oral presentation accompanying them, are for educational purposes only and do not constitute accounting or legal advice or create an accountant-client relationship. Any mention of commercial products is for information only; it does not imply recommendation or endorsement by AuditNet® Page 4
  • 6. Data Files & Video Data Files Please see GoToWebinar console Not all files are available as part of the webinar  All others, please contact Rich Lanza rich@richlanza.com Video Will be made available in the next 3 days by AuditNet®  Email will be sent from the Go To Webinar system CPE Will be made available in the next 3 days by AuditNet®  Email with link to download the certificate will be sent from Gensend.io (you must be able to receive mail from gensend.io) Page 5
  • 7. Richard B. Lanza, CPA, CFE, CGMA • Director of Data Analytics for Grant Thornton, LLP • Assists audit teams daily in the use of analytic software • Nearly 25 years of ACL, Excel and other software usage • Has written and spoken on the use of audit data analytics for over two decades • Received the outstanding achievement in business award by the Association of Certified Fraud Examiners for developing the publication Proactively Detecting Fraud Using Computer Audit Reports as a research project for the IIA • Recently was a contributing author of: • Global Technology Audit Guide (GTAG #13) Fraud In An Automated World – Institute Of Internal Auditors. • Data Analytics – A Practical Approach - research whitepaper for the information system accountability control association. • Cost Recovery – Turning Your Accounts Payable Department Into A Profit Center – Wiley And Sons. • In 2015, discovered a new textual analytic technique using letters called the Lanza Approach to Letter Analytics (LALA)TM For more information Email Rich at rich.lanza@us.gt.com 6
  • 8. Today’s Agenda Based on past experience, learn why we selected our top 10 analytic tests. Use a case study set of examples in payables and general ledger to see how audit steps can be automated into analytics using Excel. Use Excel as audit software, able to mimic practically all data analytic commands found in more advanced tools. Apply analytics across the entire lifecycle from risk assessment, to planning, fieldwork, and reporting. Page 7
  • 9. Test #1 – Stratify Data
  • 10. Getting Started: Pivot to New Sheet Page 9
  • 11. Getting Around The Pivot  Right click on the amount fields (data part) to see field list and edit various Pivot Table options  Select from the Top Ribbon Menu the Options and Design menus for Pivot Tables (Excel creates them when a Pivot Table is created) – best and easiest way to make changes Page 10
  • 12. Stratify Your Data – Ver 1 Page 11 =IF(B4>1000,“3. Over $1000",IF(B4>100,“2. Over $100 to $1,000",IF(B4<=100,“1. Up to $100"))) This will create three strata: 1. Up to $100 2. Over $100 to $1,000 3. Over $1,000 Start from highest to lowest – Excel picks the first matching item
  • 13. Stratify Your Data – Ver 2 Page 12
  • 14. Stratification Types  By Month  By Department  By Business Partner (Vendor / Customer)  By Account  By Enterer Page 13
  • 16. 2. Codify Data To Run Round $s…and More
  • 17. Text Functions Page 16 LEFT() With a determined set of characters in a set string, the first character is returned from, the left of the cell LEN() Identifies the number of characters in a set and returns that as a number in the cell LOWER() UPPER() Lower case letters substitute upper case letters (reverse for upper) MID() Identifies characters in a set based on a start position and number of characters which is determined by the user PROPER() Capitalizes the first letter of each character and the remaining are lowercase RIGHT() Pulls the last set of character from a set and the number of character is set by the user TEXT() Returns the text version of a number with a specified number format (i.e., =TEXT(C999,"0.00") will convert 12345 into a text version of 12345.00) TRIM() Keeps single spaces only between words and removes all other spaces
  • 18. Text Functions Page 17 CONCATENATE() Combines numerous strings to one stream (You can also use the & character to combine/merge/join fields) REPT() Repeats a character as many times as the user wants i.e. : =REPT (“J”,10) wll lead to ‘JJJJJJJJJJ CHAR() Identifies a character with a number which is presented in the cell.This number then can be used to convert other CHAR to the number translate code from other sources (i.e., CHAR(127) is a nonprintable character and CHAR(9) is a tab) CLEAN() From a text string, it removes the nonprintable characters
  • 19. Math Functions Page 18 VALUE() A number is given to identify a string now as a number ISNA() Returns true if the formula leads to a NA solution – This is normally combined with IF so =IF(ISNA(C3/D3),0,(D3/D3)) AVERAGE() Is the mean of a range of cells set in the average function MEDIAN() Provides the middle number between the largest set value of numbers and the lowest value of numbers MAX() Provides the top value in a set of values MIN() Provides the lowest value in a set of values STDEV() Calculates the standard deviation for a range of numbers
  • 20. Math Functions Page 19 ABS() Turns a negative or positive number into a positive number MOD() Determines whether a number is round to a divisor set by the user (i.e. : divisor equals 1000 and all numbers where MOD() are =0 would be round to 1000) ROUND() Sets a number to a specified decimal place
  • 21. Date and Time Functions Page 20 DATE() A date is created with a year, month, and day (i.e. : 2015,10,7) DAY() By pointing to a specific field the function identifies the day HOUR() Identifies a hour in a time field which is set to military time (0:00- 23:00 hrs.) MINUTE() Identifies the minutes in a time field which is set at 0-59 MONTH() Identifies the month in a time field which is set as 1=January NOW() Sets to the actual current date and time TODAY() Sets to the actual date
  • 22. Date and Time Functions Page 21 NETWORKS () Identifies the ACTUAL Network days in a whole number from start to finish dates. (weekends and holidays are excluded unless specified) SECOND() Identifies seconds in a time field ie:0-59 WEEKDAY() Identifies a day during a specified week in a specific timeframe. 1=Sunday WEEKUM() Identifies a specific week number in the calendar year YEAR() Identifies a year with a specific number i.e: 1900-9999
  • 24. 3. Duplicates and 4. Averages
  • 25. 3. Duplicate Payments • Same Vendor Number; Same Amount; Same Date • Same Vendor Number; Same Amount; Different Invoice Number • Same Amount; Same Date; Different Vendor • Same Vendor; Same Amount; Different Date Page 24
  • 26. Reducing False Positives http://bit.ly/1Pdz3Df 25 Blog article explains specifically explains how to: Remove noise Filter top predictors Duplicate hit rates increased to 50% vs. less than 1%
  • 27. 4. Calculating an Average DPO Create a calculated field for check less invoice date (DPO) – in data or the Pivot Add sum of Invoice Amount and Average of newly calculated field Page 26
  • 28. Average Income per Zip Code – IRS - 2013 Quick Link: http://1.usa.gov/28YzTSX 27
  • 30. 5. Vendor Background and Geomapping
  • 32. Specific Business Partner Information Yellow Pages  http://www.yellowpages.com/  http://www.bbb.org/  http://www.linkedin.com  http://glassdoor.com IP Address Lookup  www.iplocation.net for Email and reverse DNS lookup State Websites  Business Listings and Incorporation Documents  Unclaimed Property  http://www.statelocalgov.net/ 31
  • 34. Is Your Organization Working With Terrorists? Page 33  https://sanctionssearch.ofac.treas.gov/
  • 35. Are Vendors On a Watch List Sam.Gov Page 34
  • 36. CIA Chiefs of State https://www.cia.gov/library/publications/world-leaders-1/ Page 35
  • 37. Are Your Vendors Real? IRS TIN Matching Program Validates U.S. Tax Identification Numbers Can submit up to 100,000 TIN submissions at a time Make sure all punctuation is removed See http://www.irs.gov/for-Tax-Pros and enter “TIN matching program” in the search box Page 36
  • 38. Power Map for Excel 2013 See: www.MrExcel.com Page 37
  • 39. Tests 6 to 8 on the Lifeblood of the Organization…..the General Ledger
  • 40. 6. Entries Not Netting to Zero Pivot Table the journals by entry number Create a Calculated Field in the Pivot Table to be the difference between the debit and credit values Filter where the entries do not net to zero 39
  • 42. 7. Enterer and Approver Analysis PivotTable the enterers (rows) and approvers (columns) Calculate a % of transaction count 41
  • 43. 8. Other Side of Revenue Entry Code the revenue accounts Pivot table the entries associated with revenue  Add the journal entry field to the Pivot Table to then identify the journals for extraction  Filter only on revenue accounts Use Vlookup() to extract entry details Pivot table the extracted revenue entries 42
  • 44. 9. Benford’s Law and Digital Analysis
  • 45. I’ve Got Your Number – Mark J. Nigrini, Ph.D. Journal of Accountancy - http://bit.ly/1skDvZe Random numbers follow a pattern as defined in table at left Focus is placed on the first digits of amount fields Digital analysis can be applied to ledger data over time 44
  • 46. Number Ranking  Summarize each amount of the journal entries (Pivot or ACL)  Rank each number in order of occurrence  Look for new numbers appearing this quarter  Score each item in a sliding scale  May be easiest to use a stratified score  Decide if unique is weirder than non-unique  Select samples based on unusual numbers Page 45
  • 48. 10. Red Flag and Textual Analytics
  • 49. Lessons from WorldCom/ MCI The fraud was accomplished primarily in two ways: 1.Booking "line costs" (interconnection expenses with other telecommunication companies) as capital expenditures on the balance sheet instead of expenses. 2.Inflating revenues with bogus accounting entries from "corporate unallocated revenue accounts". In 2002, a small team of internal auditors at WorldCom worked together, often at night and secretly, to investigate and reveal $3.8 billion worth of fraud…. Per Wikipedia – MCI Inc. Page 48
  • 50. Can You Read This? It deosn't mttaer in waht oredr the ltteers in a wrod are, the olny iprmoetnt tihng is taht the frist and lsat ltteer be at the rghit pclae. 49
  • 51. Word Summary Analysis Split account or journal description field Copy and paste each column to the end Add a type (or few type) fields Pivot table on the combined list of words by types 50
  • 52. Page 51 A Benford’s Law For Words?
  • 53. Useful Links on LALA  http://bit.ly/1jFD87b - Blog announcing the discovery of letter analytics.  http://bit.ly/1RZpolz - Research Paper #1 – Focused on explaining the letter analytic concept with reference to a benchmark for the English Language and an analysis of British song titles from 1960 to 1999.  http://bit.ly/1QebYkL - Research Paper #2 – Provides a more in-depth analysis of the population of text data and how letters can explain text variations over time more quickly than word summaries. Three examples are provided including Shakespeare’s plays, Berkshire Hathaway shareholder reports and my personal Emails.  http://bit.ly/1W0CAZO - Predictive Analytics Times article on how Word clouds analysis could improved with letter analytic visualizations  http://bit.ly/1TGwvPS and http://bit.ly/21mEbsU - ACFE Fraud Magazine articles on “The Benford’s Law of Words – Parts 1 and 2” 52
  • 56. Data Files & Video Data Files Please see GoToWebinar console Not all files are available as part of the webinar  All others, please contact Rich Lanza rich@richlanza.com Video Will be made available in the next 3 days by AuditNet®  Email will be sent from the Go To Webinar system Page 55
  • 57. AuditNet® Training on the Go See www.auditnet.org Offering 9 Unique Training Courses / 18 CPE Video playback of past / missed courses  Don’t forget the data files and templates to get you started https://www.auditnet.org/training Page 56
  • 58. AuditSoftwareVideos.com Now Free (But Not for Long!) 70+ Hours of videos accessible for FREE subscriptions Repeat video and text instruction as much as you need Sample files, scripts, and macros in ACL™, Excel™, etc. available for purchase Bite-size video format (3 to 10 minutes) >> Professionally produced videos by instructors with over 20 years experience in ACL™, Excel™ , and more Page 57
  • 59. Thank You! Jim Kaplan AuditNet® LLC 1-800-385-1625 Email: webinars@auditnet.org www.auditnet.org Richard B. Lanza, CPA, CFE, CGMA Contact Information D: +1 732 516 5527 M: +1 732 331 3494 Email: rich.lanza@us.gt.com Page 58