Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
xyz1
Creator III
Creator III

?

.

10 Replies
vinieme12
Champion III
Champion III

please post some sample data and expected out

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
xyz1
Creator III
Creator III
Author

.

vinieme12
Champion III
Champion III

what sheet should I refer to? also what is your problem to be solved/ expected output

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
Peter_Cammaert
Partner - Champion III
Partner - Champion III

Please move your discussion to a Qlik Sense forum. Thanks.

xyz1
Creator III
Creator III
Author

.

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Such things can be easily found with the help of the Search box. It's located in the black toolbar at the far right.

QlikCommunity Tip: How to move your discussion thread

xyz1
Creator III
Creator III
Author

.

vinieme12
Champion III
Champion III

First Load Employee details and then Crosstable Load ROLE and FTE values, Your data model will look like below

Datamodel.JPG

LOAD [Employee Name],

    Location,

    Site,

    Dept,

    [I/E]

FROM

(ooxml, embedded labels, table is [Emp vs Role]);

CrossTable(ROLE,FTE,2)

FACT:

LOAD [Employee Name],

    'Individual'  as FACT_TYPE,

    [Business Relationship (BRM)],

    [Architect / PM],

    Analyst,

    Admin,

    [Support & SME],

    [Project Integrator],

    Specialist,

    Technician,

    [Manager / Team Leader] ,

    Enable

FROM

(ooxml, embedded labels, table is [Emp vs Role]);

CrossTable(ROLE,FTE,2)

temp:

LOAD [Employee Name],

'TEAM' as FACT_TYPE,

    [Alignment & Direction],

    Performance,

    [Sales, Marketing, and Logistics],

    [Industrial, Quality, and Research],

    [Finance, Purchasing, HR, & IT],

    [Web Application Systems],

    [Content Collaboration],

    [Business Intelligence],

    [B2B / EDI],

    [Data Mart Management],

    Testing,

    [Innovation Center],

    [Engineering and Architecture],

    [Infrastructure and Operations],

    OCM,

    [Security and Risk],

    [Client Services],

    [Access Rights],

    Symphony

  

FROM

(ooxml, embedded labels, table is [Emp vs Team]);

Chart Expression for TEAM TOTAL

=Sum({<FACT_TYPE = {'TEAM'}>}FTE)

Chart Expression for Employee TOTAL

=Sum({<FACT_TYPE = {'Indi*'}>}FTE)



crosstable.JPG

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
xyz1
Creator III
Creator III
Author

.