QlikView Training Sharath Ghosh.

Slides:



Advertisements
Similar presentations
High level QA strategy for SQL Server enforcer
Advertisements

AS ICT Finding your way round MS-Access The Home Ribbon This ribbon is automatically displayed when MS-Access is started and when existing tables.
World Class Financial Reporting with FRx Report Writer Elisa R. Vick
Microsoft Access Course 1. Introduction to the user interface.
CX Analytics: Best Practices in Measuring For Success
Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts
PROJECT OVERVIEW PINGER EXECUTIVE PLOTS AKBAR MEHDI.
MyFloridaMarketPlace Analysis 2.0 Functional Overview December 18 - December 19, 2007.
Building New SOA and AJAX- Based Business Applications Mark Barnard R&D Manager – Natural Business Services Software AG (Canada) Inc.
Microsoft Excel 2010 Chapter 8
ZETA FIXED ASSET MANAGEMENT. USP OF ZETA FAM Web Application. Dashboard. ‘n’ number of masters & activity creation. Pre defined MIS reports. Export reports.
Audit Logging Your Way To Script Success Richard Pearce
Attribute databases. GIS Definition Diagram Output Query Results.
Tutorial 11: Connecting to External Data
The Solution xxxxxxxx.
1 of 5 This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS OR IMPLIED, IN THIS DOCUMENT. © 2007 Microsoft Corporation.
Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts
Copyright © 2006, SAS Institute Inc. All rights reserved. Enterprise Guide 4.2 : A Primer SHRUG : Spring 2010 Presented by: Josée Ranger-Lacroix SAS Institute.
Workshop on Enhanced Self-Evaluation Platform (SEP) on Information Technology in Education LIU, Man Lee & HO, Chung Hong Centre of Excellence Teachers.
Database testing Prepared by Saurabh sinha. Database testing mainly focus on: Data integrity test Data integrity test Stored procedures test Stored procedures.
1 Keith Vicens, Managing Consultant CRM Housing Solution Extending Your Case Management Capabilities.
Workshop on Enhanced Self-Evaluation Platform (SEP) on Information Technology in Education LIU, Man Lee & HO, Chung Hong Seconded Teacher Education and.
Class Instructor Name Date. Classroom Tips Class Roster – Please Sign In Class Roster – Please Sign In Internet Usage Internet Usage –Breaks and Lunch.
Prof. Name Position (123) University Name Chapter 1: Introduction Spreadsheet-Based Decision Support Systems.
Advanced Web Forms with Databases Programming Right from the Start with Visual Basic.NET 1/e 13.
Chapter 1 Introduction to VBA Development in Excel.
Relational Lists.txt Excel can import multiple file types.txt Excel can import multiple file types.
Call : Advance Excel With Advance Formulas MIS Reporting With Dashboard Excel VBA Macros.
DEV-5: Introduction to WebSpeed ® Stephen Ferguson Sr. Training Program Manager.
Using SAS® Information Map Studio
Excel Chapters -5,6. Pivot Table  When you have a lot of data, it can sometimes be difficult to analyze all of the information in your worksheet.  PivotTables.
People © 2013 The Sleeter Group All rights reserved. Intuit, the Intuit logo and QuickBooks, among others, are registered trademarks of Intuit Inc. Other.
Advanced Excel Microsoft Excel Excel - Overview Calculator Create budgets, analyze results Perform Financial Analysis Creating charts Organizing.
ETL Extract. Design Logical before Physical Have a plan Identify Data source candidates Analyze source systems with data- profiling tools Receive walk-through.
WaveMaker Visual AJAX Studio 4.0 Training Basics: Building Your First Application Binding Basics.
Local Touch – Global Reach InfoPath 2010 Presented by Mark Grimes Principal Consultant Microsoft Infrastructure Practice Sogeti, USA.
IBIS-Q Tutorial: Secure Query Overview To get to the Secured Data Modules from the main IBIS-PH page, select.
Introduction to Views Stanford Drupal Camp April 6, 2013.
6 Copyright © 2009, Oracle. All rights reserved. Using the Data Transformation Operators.
External Study Credit Granting with SurveyGizmo Shepherd University Department of Psychology.
SharePoint 2010 Business Intelligence Module 7: Filter Web Parts.
1 januari 2008 RIBASIM input data by Wil N.M. van der Krogt.
Deck off cards Draft 2 Insert Your Name. Product Overview QlikView Developer Development tool to create data model and graphical interface QlikView Server.
Data Exchange Framework
Education And Training CTC IT DIVISION PivotLink User Training April 2010.
By Martha Nelson Digital Learning Specialist Excel Pivot Tables.
Together we can build something great FORWARD | 2016 Role Centers and Charting Joanna Broszeit, Dawn Stenbol, Tracie Folscroft Education Track | Boston.
Take Your Data Analysis and Reporting to the Next Level by Combining SAS Office Analytics, SAS Visual Analytics, and SAS Studio David Bailey Tim Beese.
Welcome! Power BI User Group (PUG)
Section 2: Tableau Basics: Your First Barchart
Creating Oracle Business Intelligence Interactive Dashboards
Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts
The Basics of Dashboards
User working in web-browser
SERVICENOW ONLINE TRAINING IN HYDERABAD
INTAKE OF NEW PORTFOLIO AND INVOICES
SAP BUSINESS OBJECTS WEB INTELLIGENCE RICH CLIENT
Module 13: Creating Data Visualizations with Power View
Report Creation Marie SHAH 31/01/2017.
Power Query Discovery and connectivity to a wide range of data sources
TRACES DataWareHouse State of play
Apparel 21 Premium User Training Reporting Tool
Fordham Connect Train-the-Trainer Training Reports
Team 13 The Los Angeles Community Garden Inventory and Locator
ODV beta Multiple views, new views bar
Dashboard in an Hour Using Power BI
Getting Started with Data
Excel-eration Webinar
Presentation transcript:

QlikView Training Sharath Ghosh

Plan Overview Getting the data Analyzing and Visualizing the data Data Structure Development Phases User Access Getting the data Tables / Structure Script Functions QVD Generation Analyzing and Visualizing the data Charts Formulas Variables UI functions

Overview – Data Structure External Servers QlikView Server

Overview – Development Stages System QlikView Server User Acceptance Test Development Content Development Integration Production

Overview – User Access R&D HP Data Sales Supply Chain Finance QlikView Server HP IT Infrastructure HP Data User/Group specific data QlikView Client Interface Web Interface Users Hubble Central DB Finance Supply Chain Sales R&D Developers UAM

Getting the data Topics Load from various sources Mapping Load/ApplyMap Common load commands Concatinate/NoConcatinate MakeDate QVD Generation

Common Table Functions Getting the data Common Table Functions Import data and name it ABC ABC: LOAD * FROM C:\data.xlsx Load a mapping file Map_Name: MAPPING LOAD * FROM C:\MAP.xlsx Include map in data (like Vlookup/left join in qlikview) ApplyMap(‘Map_File_Name',Column_Name_to_be_checked_in_data_file,‘if_error_value') Do a sum and Rename column name LOAD sum(unit_sold) as Sales FROM C:\data.xlsx Create a column with date MakeDate(Year,Month,Day) as Date Create a temporary table called TABLE2 TABLE2: NoConcatenate LOAD * FROM C:\data.xlsx Append the temporary table (Table2) below Table1 Concatenate (Table1) LOAD * FROM RESIDENT TABLE2 Remove the temporary table after appending DROP TABLE TABLE2 Store DATA1 in qvd STORE DATA1 INTO PATH.qvd (qvd) Left Join Left Join (Table1) LOAD * FROM RESIDENT TABLE2 @ line end always use ;

Analyzing and Visualizing the data Topics Common excel formulas (if, sum, avg) QlikView formulas (isnull, getfieldselection) Set Analysis Graph/Charts/Objects/Select Fields Variables Layout Actions

Analyzing and Visualizing the data Common UI Functions If there is no list box selection do a sum if(isnull(Selection),sum(Sales)) set analysis to ignore selections in Year list box sum({$<Year>}[Unit Sold]) set analysis to fix a value in Year list box sum({$<Year={'2012'}>}[Unit Sold]) set analysis to fix multiple value in Year list box Set analysis to ignore all the selection sum({1}[Unit Sold]) set a variable in script SET variable_name = 0; Create a variable in script with formula LET variable_name = 'Code'; $ ' & Chr(36) & ' ‘ ' & Chr(39) & ' Colors (Red) RGB(255,0,0) Get the current selected value in list box GetCurrentSelections(Selection)

QlikView Development Process

Extras Topics Section Access Exports VBA Selections / Filters Advanced Variables Google Map

Thank You