Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
asknyldz
Contributor III
Contributor III

Sum value Exception

Hi there,

Here is the dashboard.

I want to if Account_Status__c = Lower, it should be not sum in chart.

By the way, why i can't see Account_Status__c values in my chart.

Regards,

16 Replies
sasiparupudi1
Master III
Master III

Change

Table1:

Load

    Id,

    Num#(Amount,'0.0') as Amount

Resident Opportunity_SQL

To

Table1:

Noconcatenate Load

    Id,

    Num#(Amount,'0.0') as Amount

Resident Opportunity_SQL

asknyldz
Contributor III
Contributor III
Author

Dear Prashant,

Here is the dashboard. I need to below result in my chart table, why i can't success.

Account_Status__cSUM(Amount)
Active100
Pending Data Validation150
Pending Sales Leader Approval125
Rejected175
Unassigned75
Unsubmitted50
Total675
asknyldz
Contributor III
Contributor III
Author

Dear Parupudi,

Here is the dashboard. I need to below result in my chart table, why i can't success.

Account_Status__cSUM(Amount)
Active100
Pending Data Validation150
Pending Sales Leader Approval125
Rejected175
Unassigned75
Unsubmitted50
Total675
Kushal_Chawda

try below script

CUSTOM CONNECT TO "Provider=QvSalesforceConnector.exe";

Opportunity_SQL:

Load

Id,

Num#(Amount,'0.0') as Amount;

SQL

SELECT

Id,

Amount

FROM

Opportunity

WHERE

FiscalYear = 2017

;

Left Join(Opportunity_SQL)

LOAD Id,

Account_Status__c;

SQL

SELECT

Id,

Account_Status__c

FROM

Account

;


asknyldz
Contributor III
Contributor III
Author

Thanks Kushal,

I tried but unfortunately.

Attached is the results.

Kushal_Chawda

Please check that the Id values from both the tables are matching or not. Seems it's not matching there for it's not joining the table correctly. Meaning that Id in opportunity table where you have amount is having blank values in Account table

asknyldz
Contributor III
Contributor III
Author

Yes my mistake, it was Company_Number__c, not ID